例えば送り元(from)が [email protected] で、CCが [email protected] だったとすると第4引数に渡す値は次のようになります。 $header="From: [email protected]"; $header.="\n"; $header.="Cc: [email protected]"; 同じようにBCCを指定するには、 $header="From: [email protected]"; $header.="\n"; $header.="Bcc: [email protected]"; CCとBCCを同時に指定するには、 $header="From: [email protected]"; $header.="\n"; $header.="Cc: [email protected]"; $header.="\n"; $header.="Bcc: foo@exampl

