boolean mb_send_mail
(string to, string subject, string message [, string
additional_headers [, string
additional_parameter]])
mb_send_mail() sends email. Headers and message are converted and encoded in ISO-2022-JP. mb_send_mail() is wrapper function of mail(). See mail() for details.
to is mail addresses send to. Multiple recipients can be specified by putting a comma between each address in to.
subject is subject of mail.
message is mail message.
string additional_headers is inserted at the end of the header. This is typically used to add extra headers. Multiple extra headers are separated with a newline(\n).
It returns TRUE for success, otherwise it returns FALSE.
additional_parameter is added this data to the call to the mailer by PHP. This is useful when setting the correct Return-Path header when using sendmail.
See also: mail().
HIVE: All information for read only. Please respect copyright! |