mailSend mail
&reftitle.description;
boolmailstringtostringsubjectstringmessagemixedadditional_headersstringadditional_parameters
Sends an email.
&reftitle.parameters;
to
Receiver, or receivers of the mail.
The formatting of this string must comply with
RFC 2822. Some examples are:
user@example.comuser@example.com, anotheruser@example.comUser <user@example.com>User <user@example.com>, Another User <anotheruser@example.com>subject
Subject of the email to be sent.
Subject must satisfy RFC 2047.
message
Message to be sent.
Each line should be separated with a CRLF (\r\n). Lines should not be
larger than 70 characters.
(Windows only) When PHP is talking to a SMTP server directly, if a full
stop is found on the start of a line, it is removed. To counter-act this,
replace these occurrences with a double dot.
]]>
additional_headers (optional)String or array to be inserted at the end of the email header.
This is typically used to add extra headers (From, Cc, and Bcc).
Multiple extra headers should be separated with a CRLF (\r\n).
If outside data are used to compose this header, the data should be sanitized
so that no unwanted headers could be injected.
If an array is passed, its keys are the header names and its
values are the respective header values.
Before PHP 5.4.42 and 5.5.27, repectively, additional_headers did not have mail header
injection protection. Therefore, users must make sure specified headers
are safe and contains headers only. i.e. Never start mail body by putting
multiple newlines.
When sending mail, the mail must contain
a From header. This can be set with the
additional_headers parameter, or a default
can be set in &php.ini;.
Failing to do this will result in an error
message similar to Warning: mail(): "sendmail_from" not
set in php.ini or custom "From:" header missing.
The From header sets also
Return-Path under Windows.
If messages are not received, try using a LF (\n) only.
Some Unix mail transfer agents (most notably
qmail) replace LF by CRLF
automatically (which leads to doubling CR if CRLF is used).
This should be a last resort, as it does not comply with
RFC 2822.
additional_parameters (optional)
The additional_parameters parameter
can be used to pass additional flags as command line options to the
program configured to be used when sending mail, as defined by the
sendmail_path configuration setting. For example,
this can be used to set the envelope sender address when using
sendmail with the -f sendmail option.
This parameter is escaped by escapeshellcmd internally
to prevent command execution. escapeshellcmd prevents
command execution, but allows to add additional parameters. For security reasons,
it is recommended for the user to sanitize this parameter to avoid adding unwanted
parameters to the shell command.
Since escapeshellcmd is applied automatically, some characters
that are allowed as email addresses by internet RFCs cannot be used.
mail can not allow such characters, so in programs where the use of
such characters is required, alternative means of sending emails (such as using a framework
or a library) is recommended.
The user that the webserver runs as should be added as a trusted user to the
sendmail configuration to prevent a 'X-Warning' header from being added
to the message when the envelope sender (-f) is set using this method.
For sendmail users, this file is /etc/mail/trusted-users.
&reftitle.returnvalues;
Returns &true; if the mail was successfully accepted for delivery, &false; otherwise.
It is important to note that just because the mail was accepted for delivery,
it does NOT mean the mail will actually reach the intended destination.
&reftitle.changelog;
&Version;&Description;7.2.0
The additional_headers parameter now also accepts
an array.
5.4.42, 5.5.27
Header injection protection has been addded for the
additional_headers parameter. This means that
multiple consecutive newlines are no longer allowed.
4.2.3
The additional_parameters parameter is disabled in
safe_mode and the
mail function will expose a warning message
and return &false; when used.
&reftitle.examples;
Sending mail.
Using mail to send a simple email:
]]>
Sending mail with extra headers.
The addition of basic headers, telling the MUA
the From and Reply-To addresses:
]]>
Sending mail with extra headers as array
This example sends the same mail as the example immediately above, but
passes the additional headers as array (available as of PHP 7.2.0).
'webmaster@example.com',
'Reply-To' => 'webmaster@example.com'
'X-Mailer' => 'PHP/' . phpversion()
);
mail($to, $subject, $message, $headers);
?>
]]>
Sending mail with an additional command line parameter.
The additional_parameters parameter
can be used to pass an additional parameter to the program configured
to use when sending mail using the sendmail_path.
]]>
Sending HTML email
It is also possible to send HTML email with mail.
Birthday Reminders for August