diff --git a/doc/classes/PHPMailer.html b/doc/classes/PHPMailer.html index 2556fd91..b5d80bfc 100644 --- a/doc/classes/PHPMailer.html +++ b/doc/classes/PHPMailer.html @@ -115,7 +115,7 @@
$Encoding :
The message encoding.
-Options: "8bit", "7bit", "binary", "base64", and "quoted-printable".
+Options: "8bit", "7bit", "binary", "base64", and "quoted-printable".
$Mailer :
Which method to use to send mail.
-Options: "mail", "sendmail", or "smtp".
+Options: "mail", "sendmail", or "smtp".
$UseSendmailOptions :
Whether mail() uses a fully sendmail-compatible MTA.
-One which supports sendmail's "-oi -f" options.
+One which supports sendmail's "-oi -f" options.
Either a single hostname or multiple semicolon-delimited hostnames. You can also specify a different port for each host by using this format: [hostname:port] -(e.g. "smtp1.example.com:25;smtp2.example.com"). +(e.g. "smtp1.example.com:25;smtp2.example.com"). Hosts will be tried in order.
$SMTPSecure :
The secure connection prefix.
-Options: "", "ssl" or "tls"
+Options: "", "ssl" or "tls"
The default remains "\n". We force CRLF where we know
- it must be used via self::CRLF.
+ The default remains "\n". We force CRLF where we know +it must be used via self::CRLF.
: This function works with the SMTP mailer on win32, not with the "mail" mailer.
+: This function works with the SMTP mailer on win32, not with the "mail" mailer.
: This function works with the SMTP mailer on win32, not with the "mail" mailer.
+: This function works with the SMTP mailer on win32, not with the "mail" mailer.
A selector for the validation pattern to use :
auto Pick strictest one automatically;pcre8 Use the squiloople.com pattern, requires PCRE > 8.0, PHP >= 5.3.2, 5.2.14;pcre8 Use the squiloople.com pattern, requires PCRE > 8.0, PHP >= 5.3.2, 5.2.14;pcre Use old PCRE implementation;php Use PHP built-in FILTER_VALIDATE_EMAIL; same as pcre8 but does not allow 'dotless' domains;html5 Use the pattern given by the HTML5 spec for 'email' type form input elements.ISO 639-1 2-character language code (e.g. French is "fr")
ISO 639-1 2-character language code (e.g. French is "fr")
A 2-element indexed array, element 0 containing an address, element 1 containing a name
- like array('joe@example.com', 'Joe User')A 2-element indexed array, element 0 containing an address, element 1 containing a name +like array('joe@example.com', 'Joe User')
Content ID of the attachment; Use this to reference
- the content when using an embedded image in HTML.Content ID of the attachment; Use this to reference +the content when using an embedded image in HTML.
Content ID of the attachment; Use this to reference
- the content when using an embedded image in HTML.Content ID of the attachment; Use this to reference +the content when using an embedded image in HTML.
fixEOL(string $str) : string
Ensure consistent line endings in a string.
-Changes every end of line from CRLF, CR or LF to $this->LE.
+Changes every end of line from CRLF, CR or LF to $this->LE.
| integer|string | $options | -Either a PATHINFO_* constant, - |
+ Either a PATHINFO_* constant, +or a string name to return only the specified piece, allows 'filename' to work on PHP < 5.2 |
set(string $name, mixed $value = '') : boolean
Set or reset instance properties.
Usage Example: -$page->set('X-Priority', '3');
+$page->set('X-Priority', '3');