Project

General

Profile

Bug #17233 ยป 5482.diff

Administrator Admin, 2007-05-02 11:38

View differences:

t3lib/class.t3lib_htmlmail.php (working copy)
*/
class t3lib_htmlmail {
// Headerinfo:
var $recipient = "recipient@whatever.com";
var $recipient_copy = ""; // This recipient (or list of...) will also receive the mail. Regard it as a copy.
var $subject = "This is the subject";
var $from_email = "sender@php-mailer.com";
var $from_name = "Mr. Sender";
var $replyto_email = "reply@mailer.com";
var $replyto_name = "Mr. Reply";
var $organisation = "Your Company";
var $priority = 3; // 1 = highest, 5 = lowest, 3 = normal
var $mailer = "PHP mailer"; // X-mailer
var $alt_base64=0;
var $alt_8bit=0;
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.
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
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
var $http_password="";
var $http_username="";
var $postfix_version1=false;
var $recipient = '';
var $recipient_copy = ''; // This recipient (or list of...) will also receive the mail. Regard it as a copy.
var $subject = '';
var $from_email = '';
var $from_name = '';
var $replyto_email = '';
var $replyto_name = '';
var $organisation = '';
var $priority = 3; // 1 = highest, 5 = lowest, 3 = normal
var $mailer = ''; // X-mailer, set to TYPO3 Major.Minor in constructor
var $alt_base64 = 0;
var $alt_8bit = 0;
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.
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
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
var $http_password = '';
var $http_username = '';
var $postfix_version1 = false;
// Internal
......
*/
function t3lib_htmlmail () {
$this->forceReturnPath = $GLOBALS['TYPO3_CONF_VARS']['SYS']['forceReturnPath'];
$this->mailer = 'TYPO3 '.TYPO3_version;
}
/**
    (1-1/1)