2 /***************************************************************
5 * (c) 1999-2009 Kasper Skaarhoj (kasperYYYY@typo3.com)
8 * This script is part of the TYPO3 project. The TYPO3 project is
9 * free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
14 * The GNU General Public License can be found at
15 * http://www.gnu.org/copyleft/gpl.html.
16 * A copy is found in the textfile GPL.txt and important notices to the license
17 * from the author is found in LICENSE.txt distributed with these scripts.
20 * This script is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * This copyright notice MUST APPEAR in all copies of the script!
26 ***************************************************************/
32 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
35 * [CLASS/FUNCTION INDEX of SCRIPT]
39 * 193: class t3lib_htmlmail
40 * 261: function t3lib_htmlmail ()
41 * 268: function start ()
42 * 305: function useQuotedPrintable()
43 * 315: function useBase64()
44 * 326: function use8Bit()
45 * 338: function encodeMsg($content)
46 * 348: function addPlain ($content)
47 * 360: function addAttachment($file)
48 * 378: function addHTML ($file)
49 * 401: function extractHtmlInit($html,$url)
50 * 412: function send($recipient)
52 * SECTION: Main functions
53 * 441: function setHeaders()
54 * 500: function setRecipient ($recip)
55 * 518: function getHTMLContentType()
56 * 527: function setContent()
57 * 554: function constructMixed ($boundary)
58 * 593: function constructHTML ($boundary)
59 * 617: function constructAlternative($boundary)
60 * 638: function constructHTML_media ($boundary)
61 * 691: function sendTheMail ()
62 * 757: function getBoundary()
63 * 769: function setPlain ($content)
64 * 780: function setHtml ($content)
65 * 791: function add_header($header)
66 * 812: function add_message($string)
67 * 823: function getContent($type)
68 * 832: function preview()
70 * SECTION: Functions for acquiring attachments, HTML, analyzing and so on **
71 * 860: function fetchHTML($file)
72 * 878: function fetchHTMLMedia()
73 * 899: function extractMediaLinks()
74 * 976: function extractHyperLinks()
75 * 1025: function extractFramesInfo()
76 * 1051: function substMediaNamesInHTML($absolute)
77 * 1078: function substHREFsInHTML()
78 * 1106: function substHTTPurlsInPlainText($content)
79 * 1142: function fixRollOvers()
81 * SECTION: File and URL-functions
82 * 1189: function makeBase64($inputstr)
83 * 1200: function getExtendedURL($url)
84 * 1222: function addUserPass($url)
85 * 1238: function getURL($url)
86 * 1250: function getStrippedURL($url)
87 * 1271: function getMimeType($url)
88 * 1300: function absRef($ref)
89 * 1320: function split_fileref($fileref)
90 * 1347: function extParseUrl($path)
91 * 1362: function tag_regex($tagArray)
92 * 1384: function get_tag_attributes($tag)
93 * 1426: function quoted_printable($string)
94 * 1437: function convertName($name)
97 * (This index is automatically created/updated by the extension "extdeveval")
101 * NOTES on MIME mail structures:
104 * multipart/alternative (text, html)
105 * multipart/alternative (text, html)
107 * Plain + HTML + image
108 * multipart/related (m/a, cids)
109 * multipart/alternative (text, html)
111 * multipart/related (m/a, cids)
112 * multipart/alternative (text, html)
118 * multipart/mixed (text/html , attachments)
120 * Plain + HTML + Attachments:
121 * multipart/mixed (m/a, attachments)
122 * multipart/alternative (text, html)
124 * Plain + HTML + image + attachment
127 * multipart/mixed (m/r, attachments)
128 * multipart/related (m/a, cids)
129 * multipart/alternative (text, html)
135 * 5.1 Quoted-Printable Content-Transfer-Encoding
136 * The Quoted-Printable encoding is intended to represent data that largely consists of octets that correspond to printable characters in the ASCII character set. It encodes the data in such a way that the resulting octets are unlikely to be modified by mail transport. If the data being encoded are mostly ASCII text, the encoded form of the data remains largely recognizable by humans. A body which is entirely ASCII may also be encoded in Quoted-Printable to ensure the integrity of the data should the message pass through a character- translating, and/or line-wrapping gateway.
138 * In this encoding, octets are to be represented as determined by the following rules:
139 * Rule #1: (General 8-bit representation) Any octet, except those indicating a line break according to the newline convention of the canonical (standard) form of the data being encoded, may be represented by an "=" followed by a two digit hexadecimal representation of the octet's value. The digits of the hexadecimal alphabet, for this purpose, are "0123456789ABCDEF". Uppercase letters must be used when sending hexadecimal data, though a robust implementation may choose to recognize lowercase letters on receipt. Thus, for example, the value 12 (ASCII form feed) can be represented by "=0C", and the value 61 (ASCII EQUAL SIGN) can be represented by "=3D". Except when the following rules allow an alternative encoding, this rule is mandatory.
140 * Rule #2: (Literal representation) Octets with decimal values of 33 through 60 inclusive, and 62 through 126, inclusive, MAY be represented as the ASCII characters which correspond to those octets (EXCLAMATION POINT through LESS THAN, and GREATER THAN through TILDE, respectively).
141 * Rule #3: (White Space): Octets with values of 9 and 32 MAY be represented as ASCII TAB (HT) and SPACE characters, respectively, but MUST NOT be so represented at the end of an encoded line. Any TAB (HT) or SPACE characters on an encoded line MUST thus be followed on that line by a printable character. In particular, an
142 * "=" at the end of an encoded line, indicating a soft line break (see rule #5) may follow one or more TAB (HT) or SPACE characters. It follows that an octet with value 9 or 32 appearing at the end of an encoded line must be represented according to Rule #1. This rule is necessary because some MTAs (Message Transport Agents, programs which transport messages from one user to another, or perform a part of such transfers) are known to pad lines of text with SPACEs, and others are known to remove "white space" characters from the end of a line. Therefore, when decoding a Quoted-Printable body, any trailing white space on a line must be deleted, as it will necessarily have been added by intermediate transport agents.
143 * Rule #4 (Line Breaks): A line break in a text body, independent of what its representation is following the canonical representation of the data being encoded, must be represented by a (RFC 822) line break, which is a CRLF sequence, in the Quoted-Printable encoding. Since the canonical representation of types other than text do not generally include the representation of line breaks, no hard line breaks (i.e. line breaks that are intended to be meaningful and to be displayed to the user) should occur in the quoted-printable encoding of such types. Of course, occurrences of "=0D", "=0A", "0A=0D" and "=0D=0A" will eventually be encountered. In general, however, base64 is preferred over quoted-printable for binary data.
144 * Note that many implementations may elect to encode the local representation of various content types directly, as described in Appendix G. In particular, this may apply to plain text material on systems that use newline conventions other than CRLF delimiters. Such an implementation is permissible, but the generation of line breaks must be generalized to account for the case where alternate representations of newline sequences are used.
145 * Rule #5 (Soft Line Breaks): The Quoted-Printable encoding REQUIRES that encoded lines be no more than 76 characters long. If longer lines are to be encoded with the Quoted-Printable encoding, 'soft' line breaks must be used. An equal sign as the last character on a encoded line indicates such a non-significant ('soft') line break in the encoded text. Thus if the "raw" form of the line is a single unencoded line that says:
146 * Now's the time for all folk to come to the aid of their country.
148 * This can be represented, in the Quoted-Printable encoding, as
151 * for all folk to come=
152 * to the aid of their country.
154 * This provides a mechanism with which long lines are encoded in such a way as to be restored by the user agent. The 76 character limit does not count the trailing CRLF, but counts all other characters, including any equal signs.
155 * Since the hyphen character ("-") is represented as itself in the Quoted-Printable encoding, care must be taken, when encapsulating a quoted-printable encoded body in a multipart entity, to ensure that the encapsulation boundary does not appear anywhere in the encoded body. (A good strategy is to choose a boundary that includes a character sequence such as "=_" which can never appear in a quoted- printable body. See the definition of multipart messages later in this document.)
156 * NOTE: The quoted-printable encoding represents something of a compromise between readability and reliability in transport. Bodies encoded with the quoted-printable encoding will work reliably over most mail gateways, but may not work perfectly over a few gateways, notably those involving translation into EBCDIC. (In theory, an EBCDIC gateway could decode a quoted-printable body and re-encode it using base64, but such gateways do not yet exist.) A higher level of confidence is offered by the base64 Content-Transfer-Encoding. A way to get reasonably reliable transport through EBCDIC gateways is to also quote the ASCII characters
158 * according to rule #1. See Appendix B for more information.
159 * Because quoted-printable data is generally assumed to be line- oriented, it is to be expected that the representation of the breaks between the lines of quoted printable data may be altered in transport, in the same manner that plain text mail has always been altered in Internet mail when passing between systems with differing newline conventions. If such alterations are likely to constitute a corruption of the data, it is probably more sensible to use the base64 encoding rather than the quoted-printable encoding.
160 * WARNING TO IMPLEMENTORS: If binary data are encoded in quoted- printable, care must be taken to encode CR and LF characters as "=0D" and "=0A", respectively. In particular, a CRLF sequence in binary data should be encoded as "=0D=0A". Otherwise, if CRLF were represented as a hard line break, it might be incorrectly decoded on
161 * platforms with different line break conventions.
162 * For formalists, the syntax of quoted-printable data is described by the following grammar:
164 * quoted-printable := ([*(ptext / SPACE / TAB) ptext] ["="] CRLF)
165 * ; Maximum line length of 76 characters excluding CRLF
167 * ptext := octet /<any ASCII character except "=", SPACE, or TAB>
168 * ; characters not listed as "mail-safe" in Appendix B
169 * ; are also not recommended.
171 * octet := "=" 2(DIGIT / "A" / "B" / "C" / "D" / "E" / "F")
172 * ; octet must be used for characters > 127, =, SPACE, or TAB,
173 * ; and is recommended for any characters not listed in
174 * ; Appendix B as "mail-safe".
179 * @author Kasper Skaarhoj <kasperYYYY@typo3.com>
183 class t3lib_htmlmail
{
186 var $recipient_copy = ''; // This recipient (or list of...) will also receive the mail. Regard it as a copy.
187 var $recipient_blindcopy = ''; // This recipient (or list of...) will also receive the mail as a blind copy. Regard it as a copy.
189 var $from_email = '';
191 var $replyto_email = '';
192 var $replyto_name = '';
193 var $organisation = '';
194 var $priority = 3; // 1 = highest, 5 = lowest, 3 = normal
195 var $mailer = ''; // X-mailer, set to TYPO3 Major.Minor in constructor
198 var $jumperURL_prefix = ''; // This is a prefix that will be added to all links in the mail. Example: 'http://www.mydomain.com/jump?userid=###FIELD_uid###&url='. if used, anything after url= is urlencoded.
199 var $jumperURL_useId = 0; // If set, then the array-key of the urls are inserted instead of the url itself. Smart in order to reduce link-length
200 var $mediaList = ''; // If set, this is a list of the media-files (index-keys to the array) that should be represented in the html-mail
201 var $http_password = '';
202 var $http_username = '';
203 var $postfix_version1 = false
;
207 This is how the $theParts-array is normally looking
208 var $theParts = array(
221 var $theParts = array();
224 var $returnPath = '';
226 var $dontEncodeHeader = false
; // If set, the header will not be encoded
231 var $image_fullpath_list = '';
232 var $href_fullpath_list = '';
234 var $plain_text_header = '';
235 var $html_text_header = '';
237 var $defaultCharset = 'iso-8859-1';
242 * Constructor. If the configuration variable forceReturnPath is set,
243 * calls to mail will be called with a 5th parameter.
244 * See function sendTheMail for more info
248 public function t3lib_htmlmail() {
249 $this->forceReturnPath
= $GLOBALS['TYPO3_CONF_VARS']['SYS']['forceReturnPath'];
251 $this->mailer
= 'TYPO3 '.TYPO3_version
;
256 * start action that sets the message ID and the charset
260 public function start() {
261 global $TYPO3_CONF_VARS;
263 // Sets the message id
264 $host = t3lib_div
::getHostname();
265 if (!$host ||
$host == '127.0.0.1' ||
$host == 'localhost' ||
$host == 'localhost.localdomain') {
266 $host = ($TYPO3_CONF_VARS['SYS']['sitename'] ?
preg_replace('/[^A-Za-z0-9_\-]/', '_', $TYPO3_CONF_VARS['SYS']['sitename']) : 'localhost') . '.TYPO3';
268 $this->messageid
= md5(microtime()) . '@' . $host;
271 // Default line break for Unix systems.
272 $this->linebreak
= chr(10);
273 // Line break for Windows. This is needed because PHP on Windows systems
274 // send mails via SMTP instead of using sendmail, and thus the linebreak needs to be \r\n.
275 if (TYPO3_OS
== 'WIN') {
276 $this->linebreak
= chr(13).chr(10);
280 if (!$this->charset
) {
281 if (is_object($GLOBALS['TSFE']) && $GLOBALS['TSFE']->renderCharset
) {
282 $this->charset
= $GLOBALS['TSFE']->renderCharset
;
283 } elseif (is_object($GLOBALS['LANG']) && $GLOBALS['LANG']->charSet
) {
284 $this->charset
= $GLOBALS['LANG']->charSet
;
285 } elseif ($GLOBALS['TYPO3_CONF_VARS']['BE']['forceCharset']) {
286 $this->charset
= $GLOBALS['TYPO3_CONF_VARS']['BE']['forceCharset'];
288 $this->charset
= $this->defaultCharset
;
292 // Use quoted-printable headers by default
293 $this->useQuotedPrintable();
298 * sets the header of both Plain Text and HTML mails to quoted printable
302 public function useQuotedPrintable() {
303 $this->plain_text_header
= 'Content-Type: text/plain; charset='.$this->charset
.$this->linebreak
.'Content-Transfer-Encoding: quoted-printable';
304 $this->html_text_header
= 'Content-Type: text/html; charset='.$this->charset
.$this->linebreak
.'Content-Transfer-Encoding: quoted-printable';
308 * sets the encoding headers to base64 for both the Plain Text and HTML mail
312 public function useBase64() {
313 $this->plain_text_header
= 'Content-Type: text/plain; charset='.$this->charset
.$this->linebreak
.'Content-Transfer-Encoding: base64';
314 $this->html_text_header
= 'Content-Type: text/html; charset='.$this->charset
.$this->linebreak
.'Content-Transfer-Encoding: base64';
315 $this->alt_base64
= 1;
320 * sets the encoding to 8bit and the current charset of both the Plain Text and the HTML mail
324 public function use8Bit() {
325 $this->plain_text_header
= 'Content-Type: text/plain; charset='.$this->charset
.$this->linebreak
.'Content-Transfer-Encoding: 8bit';
326 $this->html_text_header
= 'Content-Type: text/html; charset='.$this->charset
.$this->linebreak
.'Content-Transfer-Encoding: 8bit';
332 * Encodes the message content according to the options "alt_base64" and "alt_8bit" (no need to encode here)
333 * or to "quoted_printable" if no option is set.
335 * @param string $content the content that will be encoded
336 * @return string the encoded content
338 public function encodeMsg($content) {
339 if ($this->alt_base64
) {
340 return $this->makeBase64($content);
341 } elseif ($this->alt_8bit
) {
344 return t3lib_div
::quoted_printable($content);
350 * Adds plain-text, replaces the HTTP urls in the plain text and then encodes it
352 * @param string $content that will be added
355 public function addPlain($content) {
356 $content = $this->substHTTPurlsInPlainText($content);
357 $this->setPlain($this->encodeMsg($content));
362 * Adds an attachment to the mail
364 * @param string $file: the filename to add
365 * @return boolean whether the attachment was added or not
367 public function addAttachment($file) {
368 // Fetching the content and the mime-type
369 $fileInfo = $this->getExtendedURL($file);
371 if (!$fileInfo['content_type']) {
372 $fileInfo['content_type'] = 'application/octet-stream';
374 $temp = $this->split_fileref($file);
376 $fileInfo['filename'] = $temp['file'];
377 } elseif (strpos(' '.$fileInfo['content_type'], 'htm')) {
378 $fileInfo['filename'] = 'index.html';
380 $fileInfo['filename'] = 'unknown';
382 $this->theParts
['attach'][] = $fileInfo;
390 * Adds HTML and media, encodes it from a URL or file
392 * @param string $file: the filename to add
393 * @return boolean whether the attachment was added or not
395 public function addHTML($file) {
396 $status = $this->fetchHTML($file);
400 if ($this->extractFramesInfo()) {
401 return 'Document was a frameset. Stopped';
403 $this->extractMediaLinks();
404 $this->extractHyperLinks();
405 $this->fetchHTMLMedia();
406 $this->substMediaNamesInHTML(0); // 0 = relative
407 $this->substHREFsInHTML();
408 $this->setHtml($this->encodeMsg($this->theParts
['html']['content']));
413 * Extract HTML-parts, used externally
415 * @param string $html: will be added to the html "content" part
416 * @param string $url: will be added to the html "path" part
419 public function extractHtmlInit($html,$url) {
420 $this->theParts
['html']['content'] = $html;
421 $this->theParts
['html']['path'] = $url;
426 * Assembles the message by headers and content and finally send it to the provided recipient.
428 * @param string $recipient: The recipient the message should be delivered to (if blank, $this->recipient will be used instead)
429 * @return boolean Returns whether the mail was sent (successfully accepted for delivery)
431 public function send($recipient) {
433 $this->recipient
= $recipient;
437 $mailWasSent = $this->sendTheMail();
453 /*****************************************
457 *****************************************/
460 * Clears the header-string and sets the headers based on object-vars.
464 public function setHeaders() {
467 $this->add_header('Message-ID: <'.$this->messageid
.'>');
469 if ($this->returnPath
) {
470 $this->add_header('Return-Path: '.$this->returnPath
);
471 $this->add_header('Errors-To: '.$this->returnPath
);
475 $this->add_header('X-Typo3MID: '.$this->Xid
);
479 if ($this->from_email
) {
480 if ($this->from_name
&& !t3lib_div
::isBrokenEmailEnvironment()) {
481 $this->add_header('From: '.$this->from_name
.' <'.$this->from_email
.'>');
483 $this->add_header('From: '.$this->from_email
);
488 if ($this->recipient_copy
) {
489 $this->add_header('Cc: ' . $this->recipient_copy
);
493 if ($this->recipient_blindcopy
) {
494 $this->add_header('Bcc: ' . $this->recipient_blindcopy
);
498 if ($this->replyto_email
) {
499 if ($this->replyto_name
) {
500 $this->add_header('Reply-To: '.$this->replyto_name
.' <'.$this->replyto_email
.'>');
502 $this->add_header('Reply-To: '.$this->replyto_email
);
506 if ($this->organisation
) {
507 $this->add_header('Organisation: '.$this->organisation
);
511 $this->add_header('X-Mailer: '.$this->mailer
);
514 if ($this->priority
) {
515 $this->add_header('X-Priority: '.$this->priority
);
517 $this->add_header('Mime-Version: 1.0');
519 if (!$this->dontEncodeHeader
) {
520 $enc = $this->alt_base64 ?
'base64' : 'quoted_printable'; // Header must be ASCII, therefore only base64 or quoted_printable are allowed!
521 // Quote recipient and subject
522 $this->recipient
= t3lib_div
::encodeHeader($this->recipient
,$enc,$this->charset
);
523 $this->subject
= t3lib_div
::encodeHeader($this->subject
,$enc,$this->charset
);
529 * Sets the recipient(s). If you supply a string, you set one recipient.
530 * If you supply an array, every value is added as a recipient.
532 * @param mixed $recipient: the recipient(s) to set
535 public function setRecipient($recipient) {
536 $this->recipient
= (is_array($recipient) ?
implode(',', $recipient) : $recipient);
541 * Returns the content type based on whether the mail has media / attachments or no
543 * @return string the content type
545 public function getHTMLContentType() {
546 return (count($this->theParts
['html']['media']) ?
'multipart/related' : 'multipart/alternative');
551 * Begins building the message-body
555 public function setContent() {
557 $boundary = $this->getBoundary();
559 // Setting up headers
560 if (count($this->theParts
['attach'])) {
561 // Generate (plain/HTML) / attachments
562 $this->add_header('Content-Type: multipart/mixed;');
563 $this->add_header(' boundary="' . $boundary . '"');
564 $this->add_message('This is a multi-part message in MIME format.' . "\n");
565 $this->constructMixed($boundary);
566 } elseif ($this->theParts
['html']['content']) {
567 // Generate plain/HTML mail
568 $this->add_header('Content-Type: ' . $this->getHTMLContentType() . ';');
569 $this->add_header(' boundary="' . $boundary . '"');
570 $this->add_message('This is a multi-part message in MIME format.' . "\n");
571 $this->constructHTML($boundary);
573 // Generate plain only
574 $this->add_header($this->plain_text_header
);
575 $this->add_message($this->getContent('plain'));
581 * This functions combines the plain / HTML content with the attachments
583 * @param string $boundary: the mail boundary
586 public function constructMixed($boundary) {
587 $this->add_message('--' . $boundary);
589 if ($this->theParts
['html']['content']) {
590 // HTML and plain is added
591 $newBoundary = $this->getBoundary();
592 $this->add_message('Content-Type: '.$this->getHTMLContentType() . ';');
593 $this->add_message(' boundary="' . $newBoundary . '"');
594 $this->add_message('');
595 $this->constructHTML($newBoundary);
598 $this->add_message($this->plain_text_header
);
599 $this->add_message('');
600 $this->add_message($this->getContent('plain'));
602 // attachments are added
603 if (is_array($this->theParts
['attach'])) {
604 foreach ($this->theParts
['attach'] as $media) {
605 $this->add_message('--' . $boundary);
606 $this->add_message('Content-Type: ' . $media['content_type'] . ';');
607 $this->add_message(' name="' . $media['filename'] . '"');
608 $this->add_message('Content-Transfer-Encoding: base64');
609 $this->add_message('Content-Disposition: attachment;');
610 $this->add_message(' filename="' . $media['filename'] . '"');
611 $this->add_message('');
612 $this->add_message($this->makeBase64($media['content']));
615 $this->add_message('--' . $boundary . '--' . "\n");
620 * this function creates the HTML part of the mail
622 * @param string $boundary: the boundary to use
625 public function constructHTML($boundary) {
626 // If media, then we know, the multipart/related content-type has been set before this function call
627 if (count($this->theParts
['html']['media'])) {
628 $this->add_message('--' . $boundary);
630 $newBoundary = $this->getBoundary();
631 $this->add_message('Content-Type: multipart/alternative;');
632 $this->add_message(' boundary="' . $newBoundary . '"');
633 $this->add_message('Content-Transfer-Encoding: 7bit');
634 $this->add_message('');
636 // Adding the plaintext/html mix, and use $newBoundary
637 $this->constructAlternative($newBoundary);
638 $this->constructHTML_media($boundary);
640 // if no media, just use the $boundary for adding plaintext/html mix
641 $this->constructAlternative($boundary);
647 * Here plain is combined with HTML
649 * @param string $boundary: the boundary to use
652 public function constructAlternative($boundary) {
653 $this->add_message('--'.$boundary);
656 $this->add_message($this->plain_text_header
);
657 $this->add_message('');
658 $this->add_message($this->getContent('plain'));
659 $this->add_message('--' . $boundary);
662 $this->add_message($this->html_text_header
);
663 $this->add_message('');
664 $this->add_message($this->getContent('html'));
665 $this->add_message('--' . $boundary . '--' . "\n");
670 * Constructs the HTML-part of message if the HTML contains media
672 * @param string $boundary: the boundary to use
675 public function constructHTML_media($boundary) {
677 if (is_array($this->theParts
['html']['media'])) {
678 foreach($this->theParts
['html']['media'] as $key => $media) {
679 if (!$this->mediaList || t3lib_div
::inList($this->mediaList
, $key)) {
680 $this->add_message('--' . $boundary);
681 $this->add_message('Content-Type: ' . $media['ctype']);
682 $this->add_message('Content-ID: <part' . $key . '.' . $this->messageid
. '>');
683 $this->add_message('Content-Transfer-Encoding: base64');
684 $this->add_message('');
685 $this->add_message($this->makeBase64($media['content']));
689 $this->add_message('--' . $boundary . '--' . "\n");
694 * Sends the mail by calling the mail() function in php. On Linux systems this will invoke the MTA
695 * defined in php.ini (sendmail -t -i by default), on Windows a SMTP must be specified in the sys.ini.
696 * Most common MTA's on Linux has a Sendmail interface, including Postfix and Exim.
697 * For setting the return-path correctly, the parameter -f has to be added to the system call to sendmail.
698 * This obviously does not have any effect on Windows, but on Sendmail compliant systems this works. If safe mode
699 * is enabled, then extra parameters is not allowed, so a safe mode check is made before the mail() command is
700 * invoked. When using the -f parameter, some MTA's will put an X-AUTHENTICATION-WARNING saying that
701 * the return path was modified manually with the -f flag. To disable this warning make sure that the user running
702 * Apache is in the /etc/mail/trusted-users table.
704 * POSTFIX: With postfix version below 2.0 there is a problem that the -f parameter can not be used in conjunction
705 * with -t. Postfix will give an error in the maillog:
707 * cannot handle command-line recipients with -t
709 * The -f parameter is only enabled if the parameter forceReturnPath is enabled in the install tool.
711 * This whole problem of return-path turns out to be quite tricky. If you have a solution that works better, on all
712 * standard MTA's then we are very open for suggestions.
714 * With time this function should be made such that several ways of sending the mail is possible (local MTA, smtp other).
716 * @return boolean Returns whether the mail was sent (successfully accepted for delivery)
718 public function sendTheMail() {
719 $mailWasSent = false
;
721 // Sending the mail requires the recipient and message to be set.
722 if (!trim($this->recipient
) ||
!trim($this->message
)) {
726 // On windows the -f flag is not used (specific for Sendmail and Postfix),
727 // but instead the php.ini parameter sendmail_from is used.
728 $returnPath = (strlen($this->returnPath
) > 0) ?
'-f ' . escapeshellarg($this->returnPath
) : '';
729 if($this->returnPath
) {
730 @ini_set
('sendmail_from', t3lib_div
::normalizeMailAddress($this->returnPath
));
732 $recipient = t3lib_div
::normalizeMailAddress($this->recipient
);
733 $recipient_copy = t3lib_div
::normalizeMailAddress($this->recipient_copy
);
735 // If safe mode is on, the fifth parameter to mail is not allowed, so the fix wont work on unix with safe_mode=On
736 $returnPathPossible = (!ini_get('safe_mode') && $this->forceReturnPath
);
737 if ($returnPathPossible) {
738 $mailWasSent = mail($recipient,
744 $mailWasSent = mail($recipient,
751 if ($recipient_copy) {
752 if ($returnPathPossible) {
753 $mailWasSent = mail($recipient_copy,
759 $mailWasSent = mail($recipient_copy,
766 if ($this->auto_respond_msg
) {
767 $theParts = explode('/',$this->auto_respond_msg
,2);
768 $theParts[1] = str_replace("/",chr(10),$theParts[1]);
769 if ($returnPathPossible) {
770 $mailWasSent = mail($this->from_email
,
773 'From: ' . $recipient,
776 $mailWasSent = mail($this->from_email
,
779 'From: ' . $recipient);
782 if ($this->returnPath
) {
783 ini_restore('sendmail_from');
792 * @return string the boundary
794 public function getBoundary() {
796 return "----------".uniqid("part_".$this->part
."_");
801 * Sets the plain-text part. No processing done.
803 * @param string $content: the plain content
806 public function setPlain($content) {
807 $this->theParts
['plain']['content'] = $content;
812 * Sets the HTML-part. No processing done.
814 * @param string $content: the HTML content
817 public function setHtml($content) {
818 $this->theParts
['html']['content'] = $content;
823 * Adds a header to the mail. Use this AFTER the setHeaders()-function
825 * @param string $header: the header in form of "key: value"
828 public function add_header($header) {
829 // Mail headers must be ASCII, therefore we convert the whole header to either base64 or quoted_printable
830 if (!$this->dontEncodeHeader
&& !stristr($header,'Content-Type') && !stristr($header,'Content-Transfer-Encoding')) {
831 // Field tags must not be encoded
832 $parts = explode(': ',$header,2);
833 if (count($parts) == 2) {
834 $enc = $this->alt_base64 ?
'base64' : 'quoted_printable';
835 $parts[1] = t3lib_div
::encodeHeader($parts[1], $enc, $this->charset
);
836 $header = implode(': ', $parts);
840 $this->headers
.= $header."\n";
845 * Adds a line of text to the mail-body. Is normally used internally
847 * @param string $msg: the message to add
850 public function add_message($msg) {
851 $this->message
.= $msg."\n";
856 * returns the content specified by the type (plain, html etc.)
858 * @param string $type: the content type, can either plain or html
861 public function getContent($type) {
862 return $this->theParts
[$type]['content'];
867 * shows a preview of the email of the headers and the message
871 public function preview() {
872 echo nl2br(htmlspecialchars($this->headers
));
874 echo nl2br(htmlspecialchars($this->message
));
884 /****************************************************
886 * Functions for acquiring attachments, HTML, analyzing and so on **
888 ***************************************************/
891 * Fetches the HTML-content from either url og local serverfile
893 * @param string $file: the file to load
894 * @return boolean whether the data was fetched or not
896 public function fetchHTML($file) {
897 // Fetches the content of the page
898 $this->theParts
['html']['content'] = $this->getURL($file);
899 if ($this->theParts
['html']['content']) {
900 $addr = $this->extParseUrl($file);
901 $path = ($addr['scheme']) ?
$addr['scheme'].'://'.$addr['host'].(($addr['port'])?
':'.$addr['port']:'').(($addr['filepath'])?
$addr['filepath']:'/') : $addr['filepath'];
902 $this->theParts
['html']['path'] = $path;
911 * Fetches the mediafiles which are found by extractMediaLinks()
915 public function fetchHTMLMedia() {
916 if (!is_array($this->theParts
['html']['media']) ||
!count($this->theParts
['html']['media'])) return;
917 foreach ($this->theParts
['html']['media'] as $key => $media) {
918 // fetching the content and the mime-type
919 $picdata = $this->getExtendedURL($this->theParts
['html']['media'][$key]['absRef']);
920 if (is_array($picdata)) {
921 $this->theParts
['html']['media'][$key]['content'] = $picdata['content'];
922 $this->theParts
['html']['media'][$key]['ctype'] = $picdata['content_type'];
929 * extracts all media-links from $this->theParts['html']['content']
933 public function extractMediaLinks() {
934 $html_code = $this->theParts
['html']['content'];
935 $attribRegex = $this->tag_regex(array('img','table','td','tr','body','iframe','script','input','embed'));
937 // split the document by the beginning of the above tags
938 $codepieces = preg_split($attribRegex, $html_code);
939 $len = strlen($codepieces[0]);
940 $pieces = count($codepieces);
942 for ($i = 1; $i < $pieces; $i++
) {
943 $tag = strtolower(strtok(substr($html_code,$len+
1,10),' '));
944 $len +
= strlen($tag)+
strlen($codepieces[$i])+
2;
945 $dummy = preg_match('/[^>]*/', $codepieces[$i], $reg);
946 $attributes = $this->get_tag_attributes($reg[0]); // Fetches the attributes for the tag
947 $imageData = array();
949 // Finds the src or background attribute
950 $imageData['ref'] = ($attributes['src'] ?
$attributes['src'] : $attributes['background']);
951 if ($imageData['ref']) {
952 // find out if the value had quotes around it
953 $imageData['quotes'] = (substr($codepieces[$i], strpos($codepieces[$i], $imageData['ref'])-1,1) == '"') ?
'"' : '';
954 // subst_str is the string to look for, when substituting lateron
955 $imageData['subst_str'] = $imageData['quotes'].$imageData['ref'].$imageData['quotes'];
956 if ($imageData['ref'] && !strstr($this->image_fullpath_list
,"|".$imageData["subst_str"]."|")) {
957 $this->image_fullpath_list
.= "|".$imageData['subst_str']."|";
958 $imageData['absRef'] = $this->absRef($imageData['ref']);
959 $imageData['tag'] = $tag;
960 $imageData['use_jumpurl'] = $attributes['dmailerping']?
1:0;
961 $this->theParts
['html']['media'][] = $imageData;
966 // Extracting stylesheets
967 $attribRegex = $this->tag_regex(array('link'));
968 // Split the document by the beginning of the above tags
969 $codepieces = preg_split($attribRegex, $html_code);
970 $pieces = count($codepieces);
971 for ($i = 1; $i < $pieces; $i++
) {
972 $dummy = preg_match('/[^>]*/', $codepieces[$i], $reg);
973 // fetches the attributes for the tag
974 $attributes = $this->get_tag_attributes($reg[0]);
975 $imageData = array();
976 if (strtolower($attributes['rel']) == 'stylesheet' && $attributes['href']) {
977 // Finds the src or background attribute
978 $imageData['ref'] = $attributes['href'];
979 // Finds out if the value had quotes around it
980 $imageData['quotes'] = (substr($codepieces[$i],strpos($codepieces[$i], $imageData['ref'])-1,1) == '"') ?
'"' : '';
981 // subst_str is the string to look for, when substituting lateron
982 $imageData['subst_str'] = $imageData['quotes'].$imageData['ref'].$imageData['quotes'];
983 if ($imageData['ref'] && !strstr($this->image_fullpath_list
,"|".$imageData["subst_str"]."|")) {
984 $this->image_fullpath_list
.= "|".$imageData["subst_str"]."|";
985 $imageData['absRef'] = $this->absRef($imageData["ref"]);
986 $this->theParts
['html']['media'][] = $imageData;
991 // fixes javascript rollovers
992 $codepieces = explode('.src', $html_code);
993 $pieces = count($codepieces);
994 $expr = '/^[^'.quotemeta('"').quotemeta("'").']*/';
995 for($i = 1; $i < $pieces; $i++
) {
996 $temp = $codepieces[$i];
997 $temp = trim(str_replace('=','',trim($temp)));
998 preg_match($expr,substr($temp,1,strlen($temp)),$reg);
999 $imageData['ref'] = $reg[0];
1000 $imageData['quotes'] = substr($temp,0,1);
1001 // subst_str is the string to look for, when substituting lateron
1002 $imageData['subst_str'] = $imageData['quotes'].$imageData['ref'].$imageData['quotes'];
1003 $theInfo = $this->split_fileref($imageData['ref']);
1005 switch ($theInfo['fileext']) {
1009 if ($imageData['ref'] && !strstr($this->image_fullpath_list
,"|".$imageData["subst_str"]."|")) {
1010 $this->image_fullpath_list
.= "|".$imageData['subst_str']."|";
1011 $imageData['absRef'] = $this->absRef($imageData['ref']);
1012 $this->theParts
['html']['media'][] = $imageData;
1021 * extracts all hyper-links from $this->theParts["html"]["content"]
1025 public function extractHyperLinks() {
1026 $html_code = $this->theParts
['html']['content'];
1027 $attribRegex = $this->tag_regex(array('a','form','area'));
1028 $codepieces = preg_split($attribRegex, $html_code); // Splits the document by the beginning of the above tags
1029 $len = strlen($codepieces[0]);
1030 $pieces = count($codepieces);
1031 for($i = 1; $i < $pieces; $i++
) {
1032 $tag = strtolower(strtok(substr($html_code,$len+
1,10)," "));
1033 $len +
= strlen($tag) +
strlen($codepieces[$i]) +
2;
1035 $dummy = preg_match('/[^>]*/', $codepieces[$i], $reg);
1036 // Fetches the attributes for the tag
1037 $attributes = $this->get_tag_attributes($reg[0]);
1038 $hrefData = array();
1039 $hrefData['ref'] = ($attributes['href'] ?
$attributes['href'] : $hrefData['ref'] = $attributes['action']);
1040 if ($hrefData['ref']) {
1041 // Finds out if the value had quotes around it
1042 $hrefData['quotes'] = (substr($codepieces[$i],strpos($codepieces[$i], $hrefData["ref"])-1,1) == '"') ?
'"' : '';
1043 // subst_str is the string to look for, when substituting lateron
1044 $hrefData['subst_str'] = $hrefData['quotes'].$hrefData['ref'].$hrefData['quotes'];
1045 if ($hrefData['ref'] && substr(trim($hrefData['ref']),0,1) != "#" && !strstr($this->href_fullpath_list
,"|".$hrefData['subst_str']."|")) {
1046 $this->href_fullpath_list
.= "|".$hrefData['subst_str']."|";
1047 $hrefData['absRef'] = $this->absRef($hrefData['ref']);
1048 $hrefData['tag'] = $tag;
1049 $this->theParts
['html']['hrefs'][] = $hrefData;
1053 // Extracts TYPO3 specific links made by the openPic() JS function
1054 $codepieces = explode("onClick=\"openPic('", $html_code);
1055 $pieces = count($codepieces);
1056 for($i = 1; $i < $pieces; $i++
) {
1057 $showpic_linkArr = explode("'",$codepieces[$i]);
1058 $hrefData['ref'] = $showpic_linkArr[0];
1059 if ($hrefData['ref']) {
1060 $hrefData['quotes'] = "'";
1061 // subst_str is the string to look for, when substituting lateron
1062 $hrefData['subst_str'] = $hrefData['quotes'].$hrefData['ref'].$hrefData['quotes'];
1063 if ($hrefData['ref'] && !strstr($this->href_fullpath_list
,"|".$hrefData['subst_str']."|")) {
1064 $this->href_fullpath_list
.= "|".$hrefData['subst_str']."|";
1065 $hrefData['absRef'] = $this->absRef($hrefData['ref']);
1066 $this->theParts
['html']['hrefs'][] = $hrefData;
1074 * extracts all media-links from $this->theParts["html"]["content"]
1076 * @return array two-dimensional array with information about each frame
1078 public function extractFramesInfo() {
1079 $htmlCode = $this->theParts
['html']['content'];
1081 if (strpos(' '.$htmlCode,'<frame ')) {
1082 $attribRegex = $this->tag_regex('frame');
1083 // Splits the document by the beginning of the above tags
1084 $codepieces = preg_split($attribRegex, $htmlCode, 1000000);
1085 $pieces = count($codepieces);
1086 for($i = 1; $i < $pieces; $i++
) {
1087 $dummy = preg_match('/[^>]*/', $codepieces[$i], $reg);
1088 // Fetches the attributes for the tag
1089 $attributes = $this->get_tag_attributes($reg[0]);
1091 $frame['src'] = $attributes['src'];
1092 $frame['name'] = $attributes['name'];
1093 $frame['absRef'] = $this->absRef($frame['src']);
1102 * This function substitutes the media-references in $this->theParts["html"]["content"]
1104 * @param boolean $absolute: If true, then the refs are substituted with http:// ref's indstead of Content-ID's (cid).
1107 public function substMediaNamesInHTML($absolute) {
1108 if (is_array($this->theParts
['html']['media'])) {
1109 foreach ($this->theParts
['html']['media'] as $key => $val) {
1110 if ($val['use_jumpurl'] && $this->jumperURL_prefix
) {
1111 $subst = $this->jumperURL_prefix
.t3lib_div
::rawUrlEncodeFP($val['absRef']);
1113 $subst = ($absolute) ?
$val['absRef'] : 'cid:part'.$key.'.'.$this->messageid
;
1115 $this->theParts
['html']['content'] = str_replace(
1117 $val['quotes'] . $subst . $val['quotes'],
1118 $this->theParts
['html']['content']);
1122 $this->fixRollOvers();
1128 * This function substitutes the hrefs in $this->theParts["html"]["content"]
1132 public function substHREFsInHTML() {
1133 if (!is_array($this->theParts
['html']['hrefs'])) return;
1134 foreach ($this->theParts
['html']['hrefs'] as $key => $val) {
1135 // Form elements cannot use jumpurl!
1136 if ($this->jumperURL_prefix
&& $val['tag'] != 'form') {
1137 if ($this->jumperURL_useId
) {
1138 $substVal = $this->jumperURL_prefix
.$key;
1140 $substVal = $this->jumperURL_prefix
.t3lib_div
::rawUrlEncodeFP($val['absRef']);
1143 $substVal = $val['absRef'];
1145 $this->theParts
['html']['content'] = str_replace(
1147 $val['quotes'] . $substVal . $val['quotes'],
1148 $this->theParts
['html']['content']);
1154 * This substitutes the http:// urls in plain text with links
1156 * @param string $content: the content to use to substitute
1157 * @return string the changed content
1159 public function substHTTPurlsInPlainText($content) {
1160 if (!$this->jumperURL_prefix
) return $content;
1162 $textpieces = explode("http://", $content);
1163 $pieces = count($textpieces);
1164 $textstr = $textpieces[0];
1165 for($i = 1; $i<$pieces; $i++
) {
1166 $len = strcspn($textpieces[$i],chr(32).chr(9).chr(13).chr(10));
1167 if (trim(substr($textstr,-1)) == '' && $len) {
1168 $lastChar = substr($textpieces[$i],$len-1,1);
1169 if (!preg_match('/[A-Za-z0-9\/#]/',$lastChar)) {
1174 $parts[0] = "http://".substr($textpieces[$i],0,$len);
1175 $parts[1] = substr($textpieces[$i],$len);
1177 if ($this->jumperURL_useId
) {
1178 $this->theParts
['plain']['link_ids'][$i] = $parts[0];
1179 $parts[0] = $this->jumperURL_prefix
.'-'.$i;
1181 $parts[0] = $this->jumperURL_prefix
.t3lib_div
::rawUrlEncodeFP($parts[0]);
1183 $textstr .= $parts[0].$parts[1];
1185 $textstr .= 'http://'.$textpieces[$i];
1193 * JavaScript rollOvers cannot support graphics inside of mail.
1194 * If these exists we must let them refer to the absolute url. By the way:
1195 * Roll-overs seems to work only on some mail-readers and so far I've seen it
1196 * work on Netscape 4 message-center (but not 4.5!!)
1200 public function fixRollOvers() {
1202 $items = explode('.src',$this->theParts
['html']['content']);
1203 if (count($items) <= 1) return;
1205 foreach($items as $key => $part) {
1206 $sub = substr($part, 0, 200);
1207 if (preg_match('/cid:part[^ "\']*/',$sub,$reg)) {
1208 // The position of the string
1209 $thePos = strpos($part,$reg[0]);
1210 // Finds the id of the media...
1211 preg_match('/cid:part([^\.]*).*/',$sub,$reg2);
1212 $theSubStr = $this->theParts
['html']['media'][intval($reg2[1])]['absRef'];
1213 if ($thePos && $theSubStr) {
1214 // ... and substitutes the javaScript rollover image with this instead
1215 // If the path is NOT and url, the reference is set to nothing
1216 if (!strpos(' '.$theSubStr, 'http://')) {
1217 $theSubStr = 'http://';
1219 $part = substr($part, 0, $thePos) . $theSubStr . substr($part,$thePos+
strlen($reg[0]),strlen($part));
1222 $newContent .= $part . ((($key+
1) != count($items)) ?
'.src' : '');
1224 $this->theParts
['html']['content'] = $newContent;
1234 /*******************************************
1236 * File and URL-functions
1238 *******************************************/
1241 * Returns base64-encoded content, which is broken every 76 character
1243 * @param string $inputstr: the string to encode
1244 * @return string the encoded string
1246 public function makeBase64($inputstr) {
1247 return chunk_split(base64_encode($inputstr));
1252 * reads the URL or file and determines the Content-type by either guessing or opening a connection to the host
1254 * @param string $url: the URL to get information of
1255 * @return mixed either false or the array with information
1257 public function getExtendedURL($url) {
1259 $res['content'] = $this->getURL($url);
1260 if (!$res['content']) return false
;
1261 $pathInfo = parse_url($url);
1262 $fileInfo = $this->split_fileref($pathInfo['path']);
1263 switch ($fileInfo['fileext']) {
1266 $res['content_type'] = 'image/'.$fileInfo['fileext'];
1270 $res['content_type'] = 'image/jpeg';
1274 $res['content_type'] = 'text/html';
1277 $res['content_type'] = 'text/css';
1280 $res['content_type'] = 'application/x-shockwave-flash';
1283 $res['content_type'] = $this->getMimeType($url);
1290 * Adds HTTP user and password (from $this->http_username) to a URL
1292 * @param string $url: the URL
1293 * @return string the URL with the added values
1295 public function addUserPass($url) {
1296 $user = $this->http_username
;
1297 $pass = $this->http_password
;
1299 if ($user && $pass && preg_match('/^(https?:\/\/)/', $url, $matches)) {
1300 return $matches[1].$user.':'.$pass.'@'.substr($url,strlen($matches[1]));
1307 * reads a url or file
1309 * @param string $url: the URL to fetch
1310 * @return string the content of the URL
1312 public function getURL($url) {
1313 $url = $this->addUserPass($url);
1314 return t3lib_div
::getURL($url);
1319 * reads a url or file and strips the HTML-tags AND removes all
1320 * empty lines. This is used to read plain-text out of a HTML-page
1322 * @param string $url: the URL to load
1323 * @return the content
1325 public function getStrippedURL($url) {
1327 if ($fd = fopen($url, "rb")) {
1328 while (!feof($fd)) {
1329 $line = fgetss($fd, 5000);
1331 $content .= trim($line) . "\n";
1341 * This function returns the mime type of the file specified by the url
1343 * @param string $url: the url
1344 * @return string $mimeType: the mime type found in the header
1346 public function getMimeType($url) {
1348 $headers = trim(t3lib_div
::getURL($url, 2));
1351 if (preg_match('/(Content-Type:[\s]*)([a-zA-Z_0-9\/\-\.\+]*)([\s]|$)/', $headers, $matches)) {
1352 $mimeType = trim($matches[2]);
1360 * Returns the absolute address of a link. This is based on
1361 * $this->theParts["html"]["path"] being the root-address
1363 * @param string $ref: address to use
1364 * @return string the absolute address
1366 public function absRef($ref) {
1368 $info = parse_url($ref);
1369 if ($info['scheme']) {
1371 } elseif (preg_match('/^\//',$ref)) {
1372 $addr = parse_url($this->theParts
['html']['path']);
1373 return $addr['scheme'].'://'.$addr['host'].($addr['port']?
':'.$addr['port']:'').$ref;
1375 // If the reference is relative, the path is added, in order for us to fetch the content
1376 return $this->theParts
['html']['path'] . $ref;
1382 * Returns information about a file reference
1384 * @param string $fileref: the file to use
1385 * @return array path, filename, filebody, fileext
1387 public function split_fileref($fileref) {
1389 if (preg_match('/(.*\/)(.*)$/', $fileref, $reg)) {
1390 $info['path'] = $reg[1];
1391 $info['file'] = $reg[2];
1394 $info['file'] = $fileref;
1397 if (preg_match('/(.*)\.([^\.]*$)/', $info['file'], $reg)) {
1398 $info['filebody'] = $reg[1];
1399 $info['fileext'] = strtolower($reg[2]);
1400 $info['realFileext'] = $reg[2];
1402 $info['filebody'] = $info['file'];
1403 $info['fileext'] = '';
1410 * Returns an array with file or url-information
1412 * @param string $path: url to check
1413 * @return array information about the path / URL
1415 public function extParseUrl($path) {
1416 $res = parse_url($path);
1417 preg_match('/(.*\/)([^\/]*)$/', $res['path'], $reg);
1418 $res['filepath'] = $reg[1];
1419 $res['filename'] = $reg[2];
1425 * Creates a regular expression out of a list of tags
1427 * @param mixed $tagArray: the list of tags (either as array or string if it is one tag)
1428 * @return string the regular expression
1430 public function tag_regex($tags) {
1431 $tags = (!is_array($tags) ?
array($tags) : $tags);
1434 foreach($tags as $tag) {
1436 $regexp .= '<' . sql_regcase($tag) . "[[:space:]]" . (($c) ?
'|' : '');
1438 return $regexp . '/';
1443 * This function analyzes a HTML tag
1444 * If an attribute is empty (like OPTION) the value of that key is just empty. Check it with is_set();
1446 * @param string $tag: is either like this "<TAG OPTION ATTRIB=VALUE>" or
1447 * this " OPTION ATTRIB=VALUE>" which means you can omit the tag-name
1448 * @return array array with attributes as keys in lower-case
1450 public function get_tag_attributes($tag) {
1451 $attributes = array();
1452 $tag = ltrim(preg_replace('/^<[^ ]*/','',trim($tag)));
1453 $tagLen = strlen($tag);
1454 $safetyCounter = 100;
1458 $reg = preg_split('/[[:space:]=>]/', $tag, 2);
1461 $tag = ltrim(substr($tag,strlen($attrib),$tagLen));
1462 if (substr($tag,0,1) == '=') {
1463 $tag = ltrim(substr($tag,1,$tagLen));
1464 if (substr($tag,0,1) == '"') {
1465 // Quotes around the value
1466 $reg = explode('"',substr($tag,1,$tagLen),2);
1467 $tag = ltrim($reg[1]);
1470 // No quotes around value
1471 preg_match('/^([^[:space:]>]*)(.*)/',$tag,$reg);
1472 $value = trim($reg[1]);
1473 $tag = ltrim($reg[2]);
1474 if (substr($tag,0,1) == '>') {
1479 $attributes[strtolower($attrib)] = $value;
1481 if ($safetyCounter < 0) break;
1488 * Implementation of quoted-printable encode.
1489 * This function was a duplicate of t3lib_div::quoted_printable, thus it's going to be removed.
1490 * Deprecated since TYPO3 4.0
1492 * @param string Content to encode
1493 * @return string The QP encoded string
1494 * @deprecated since TYPO3 4.0, remove in TYPO 4.3
1496 public function quoted_printable($string) {
1497 return t3lib_div
::quoted_printable($string, 76);
1502 * Converts a name field
1503 * Deprecated since TYPO3 4.0
1505 * @param string $name: the name
1506 * @return string the name
1507 * @deprecated since TYPO3 4.0, remove in TYPO3 4.3
1509 public function convertName($name) {
1514 if (defined('TYPO3_MODE') && $TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['t3lib/class.t3lib_htmlmail.php']) {
1515 include_once($TYPO3_CONF_VARS[TYPO3_MODE
]['XCLASS']['t3lib/class.t3lib_htmlmail.php']);