imap_mail
(PHP 4, PHP 5, PHP 7, PHP 8)
imap_mail — e-mail メッセージを送信する
説明
imap_mail(
string
string
string
?string
?string
?string
?string
): bool
string
$to
,string
$subject
,string
$message
,?string
$additional_headers
= null
,?string
$cc
= null
,?string
$bcc
= null
,?string
$return_path
= null
): bool
この関数は、Cc および Bcc 受信者の正確な処理を行って email を送信することが可能です。
パラメータ to
、cc
および
bcc
は全て文字列で、
» RFC822
アドレスリストとしてパースされます。
パラメータ
to
-
受信者。
subject
-
メールの件名。
message
-
メールの本文。 imap_mail_compose() を参照ください。
additional_headers
-
メールに設定する追加ヘッダ文字列。
cc
-
bcc
-
bcc
で指定した受信者は mail を受信しますが、 ヘッダからは除外されます。 return_path
-
リターンパスを指定するために
rpath
パラメータを使用してください。この関数は、 複数のユーザー用のメールクライアントとして PHP を使用する際に有用です。
変更履歴
バージョン | 説明 |
---|---|
8.0.0 |
additional_headers , cc ,
bcc , return_path は、nullable になりました。
|
+add a note
User Contributed Notes
There are no user contributed notes for this page.