- Correct documentation of the fifth param to mail()

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@92973 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Derick Rethans 2002-08-22 07:44:11 +00:00
parent 230f3af72a
commit 575c3134e8

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.9 $ -->
<!-- $Revision: 1.10 $ -->
<!-- splitted from ./en/functions/mail.xml, last change in rev 1.2 -->
<refentry id="function.mail">
<refnamediv>
@ -96,7 +96,7 @@ mail("nobody@example.com", "the subject", $message,
</para>
<para>
The <parameter>additional_parameters</parameter> parameter
can be used to pass additional parameters to the program configured
can be used to pass an additional parameter to the program configured
to use when sending mail using the <literal>sendmail_path</literal>
configuration setting. For example, this can be used to set the
envelope sender address when using sendmail. You may need to add
@ -126,7 +126,7 @@ mail("nobody@example.com", "the subject", $message,
<programlisting>
<![CDATA[
/* recipients */
$to = "Mary <mary@example.com>" . ", " ; //note the comma
$to = "Mary <mary@example.com>" . ", " ; // note the comma
$to .= "Kelly <kelly@example.com>";
/* subject */