Documentation TYPO3 par Ameos |
Definition at line 193 of file class.t3lib_htmlmail.php.
|
Constructor. If the configuration variable forceReturnPath is set, calls to mail will be called with a 5th parameter. See function sendTheMail for more info
Definition at line 261 of file class.t3lib_htmlmail.php. |
|
[Describe function...]
Definition at line 1300 of file class.t3lib_htmlmail.php. Referenced by extractMediaLinks(). |
|
[Describe function...]
Definition at line 791 of file class.t3lib_htmlmail.php. References t3lib_div::encodeHeader(), and quoted_printable(). Referenced by setContent(), and setHeaders(). |
|
[Describe function...]
Definition at line 812 of file class.t3lib_htmlmail.php. Referenced by constructAlternative(), constructHTML(), constructHTML_media(), constructMixed(), and setContent(). |
|
[Describe function...]
Definition at line 360 of file class.t3lib_htmlmail.php. References getExtendedURL(), and split_fileref(). |
|
[Describe function...]
Definition at line 378 of file class.t3lib_htmlmail.php. References encodeMsg(), extractFramesInfo(), extractHyperLinks(), extractMediaLinks(), fetchHTML(), fetchHTMLMedia(), substHREFsInHTML(), and substMediaNamesInHTML(). |
|
[Describe function...]
Definition at line 348 of file class.t3lib_htmlmail.php. References encodeMsg(), setPlain(), and substHTTPurlsInPlainText(). Referenced by t3lib_formmail::start(). |
|
[Describe function...]
Definition at line 1222 of file class.t3lib_htmlmail.php. |
|
[Describe function...]
Definition at line 617 of file class.t3lib_htmlmail.php. References add_message(), and getContent(). Referenced by constructHTML(). |
|
[Describe function...]
Definition at line 593 of file class.t3lib_htmlmail.php. References add_message(), constructAlternative(), constructHTML_media(), and getBoundary(). Referenced by constructMixed(), and setContent(). |
|
[Describe function...]
Definition at line 638 of file class.t3lib_htmlmail.php. References add_message(), t3lib_div::inList(), and makeBase64(). Referenced by constructHTML(). |
|
[Describe function...]
Definition at line 554 of file class.t3lib_htmlmail.php. References add_message(), constructHTML(), getBoundary(), getContent(), getHTMLContentType(), and makeBase64(). Referenced by setContent(). |
|
[Describe function...]
Definition at line 1437 of file class.t3lib_htmlmail.php. |
|
[Describe function...]
Definition at line 338 of file class.t3lib_htmlmail.php. References makeBase64(), and t3lib_div::quoted_printable(). Referenced by addHTML(), addPlain(), tx_install::check_mail(), and t3lib_formmail::start(). |
|
[Describe function...]
Definition at line 1347 of file class.t3lib_htmlmail.php. Referenced by fetchHTML(). |
|
[Describe function...]
Definition at line 1025 of file class.t3lib_htmlmail.php. Referenced by addHTML(). |
|
External used to extract HTML-parts
Definition at line 401 of file class.t3lib_htmlmail.php. |
|
[Describe function...]
Definition at line 976 of file class.t3lib_htmlmail.php. Referenced by addHTML(). |
|
[Describe function...]
Definition at line 899 of file class.t3lib_htmlmail.php. References absRef(), get_tag_attributes(), and tag_regex(). Referenced by addHTML(). |
|
Definition at line 860 of file class.t3lib_htmlmail.php. References extParseUrl(), and getURL(). Referenced by addHTML(). |
|
[Describe function...]
Definition at line 878 of file class.t3lib_htmlmail.php. References getExtendedURL(). Referenced by addHTML(). |
|
[Describe function...]
Definition at line 1142 of file class.t3lib_htmlmail.php. |
|
analyses a HTML-tag $tag is either like this "<TAG OPTION ATTRIB=VALUE>" or this " OPTION ATTRIB=VALUE>" which means you can omit the tag-name returns an array with the attributes as keys in lower-case If an attribute is empty (like OPTION) the value of that key is just empty. Check it with is_set();
Definition at line 1384 of file class.t3lib_htmlmail.php. Referenced by extractMediaLinks(). |
|
[Describe function...]
Definition at line 757 of file class.t3lib_htmlmail.php. Referenced by constructHTML(), constructMixed(), and setContent(). |
|
[Describe function...]
Definition at line 823 of file class.t3lib_htmlmail.php. Referenced by constructAlternative(), constructMixed(), and setContent(). |
|
[Describe function...]
Definition at line 1200 of file class.t3lib_htmlmail.php. Referenced by addAttachment(), and fetchHTMLMedia(). |
|
[Describe function...]
Definition at line 518 of file class.t3lib_htmlmail.php. Referenced by constructMixed(), and setContent(). |
|
[Describe function...]
Definition at line 1271 of file class.t3lib_htmlmail.php. |
|
[Describe function...]
Definition at line 1250 of file class.t3lib_htmlmail.php. |
|
[Describe function...]
Definition at line 1238 of file class.t3lib_htmlmail.php. References t3lib_div::getURL(). Referenced by fetchHTML(). |
|
Definition at line 1189 of file class.t3lib_htmlmail.php. Referenced by constructHTML_media(), constructMixed(), and encodeMsg(). |
|
[Describe function...]
Definition at line 832 of file class.t3lib_htmlmail.php. |
|
Implementation of quoted-printable encode. This function was a duplicate of t3lib_div::quoted_printable, thus it's going to be removed.
Definition at line 1426 of file class.t3lib_htmlmail.php. References t3lib_div::quoted_printable(). Referenced by add_header(), and setHeaders(). |
|
[Describe function...]
Definition at line 412 of file class.t3lib_htmlmail.php. References $recipient, sendTheMail(), setContent(), and setHeaders(). |
|
Sends the mail by calling the mail() function in php. On Linux systems this will invoke the MTA defined in php.ini (sendmail -t -i by default), on Windows a SMTP must be specified in the sys.ini. Most common MTA's on Linux has a Sendmail interface, including Postfix and Exim. For setting the return-path correctly, the parameter -f has to be added to the system call to sendmail. This obviously does not have any effect on Windows, but on Sendmail compliant systems this works. If safe mode is enabled, then extra parameters is not allowed, so a safe mode check is made before the mail() command is invoked. When using the -f parameter, some MTA's will put an X-AUTHENTICATION-WARNING saying that the return path was modified manually with the -f flag. To disable this warning make sure that the user running Apache is in the /etc/mail/trusted-users table. POSTFIX: With postfix version below 2.0 there is a problem that the -f parameter can not be used in conjunction with -t. Postfix will give an error in the maillog: cannot handle command-line recipients with -t The -f parameter is only enabled if the parameter forceReturnPath is enabled in the install tool. This whole problem of return-path turns out to be quite tricky. If you have a solution that works better, on all standard MTA's then we are very open for suggestions. With time this function should be made such that several ways of sending the mail is possible (local MTA, smtp other).
Definition at line 691 of file class.t3lib_htmlmail.php. References $returnPath, and $theParts. Referenced by send(). |
|
[Describe function...]
Definition at line 527 of file class.t3lib_htmlmail.php. References add_header(), add_message(), constructHTML(), constructMixed(), getBoundary(), getContent(), and getHTMLContentType(). Referenced by send(), and t3lib_formmail::start(). |
|
Definition at line 441 of file class.t3lib_htmlmail.php. References add_header(), t3lib_div::encodeHeader(), and quoted_printable(). Referenced by send(), and t3lib_formmail::start(). |
|
[Describe function...]
Definition at line 780 of file class.t3lib_htmlmail.php. |
|
[Describe function...]
Definition at line 769 of file class.t3lib_htmlmail.php. Referenced by addPlain(). |
|
[Describe function...]
Definition at line 500 of file class.t3lib_htmlmail.php. Referenced by t3lib_formmail::start(). |
|
[Describe function...]
Definition at line 1320 of file class.t3lib_htmlmail.php. Referenced by addAttachment(). |
|
Definition at line 268 of file class.t3lib_htmlmail.php. References $charset, and useQuotedPrintable(). |
|
[Describe function...]
Definition at line 1078 of file class.t3lib_htmlmail.php. Referenced by addHTML(). |
|
[Describe function...]
Definition at line 1106 of file class.t3lib_htmlmail.php. Referenced by addPlain(). |
|
[Describe function...]
Definition at line 1051 of file class.t3lib_htmlmail.php. Referenced by addHTML(). |
|
[Describe function...]
Definition at line 1362 of file class.t3lib_htmlmail.php. Referenced by extractMediaLinks(). |
|
[Describe function...]
Definition at line 326 of file class.t3lib_htmlmail.php. |
|
[Describe function...]
Definition at line 315 of file class.t3lib_htmlmail.php. Referenced by t3lib_formmail::start(). |
|
[Describe function...]
Definition at line 305 of file class.t3lib_htmlmail.php. Referenced by start(). |