7.1

Table Of Contents
An e-mail template in Notepad++
The following functions are available for all e-mail templates:
l setSubject: This function sets the subject for the e-mail message. If no subject is specified the subject is set to: No
Subject.
$this->setSubject("Password Assistance")
l setFrom: This function overrides the Sender e-mail address set in the E-mail Settings.
$this->setFrom("info@printshopweb.com")
l setFromName: This function overrides the Sender e-mail address set in the E-mail Settings.
$this->setFromName("MyCards.com")
l setTo: By default PrintShop Mail Web will determine the recipients of the message based on the E-mail Addressees
settings in the Settings section. The setTo function overrides the "To" header defined by the system.
The first parameter is the e-mail address, the function accepts a second optional parameter that is used as a human-
readable name of the recipient for the header.
$this->setTo(“psw-beta@eu.objectiflune.com”,”PSW Beta)
l addTo: Adds a recipient to the mail with a "To" header.
The first parameter is the e-mail address, the function accepts a second optional parameter that is used as a human-
readable name of the recipient for the header.
$this->addTo(“psw-beta@eu.objectiflune.com”,”PSW Beta”)
l addCc: Adds a recipient to the "Cc" header of the message.
The first parameter is the e-mail address, the function accepts a second optional parameter that is used as a human-
readable name of the recipient for the header.
$this->addCc(“psw-beta@eu.objectiflune.com”,”PSW Beta”)
l addBcc: Adds a recipient to the "BCc" header of the message.
The first parameter is the e-mail address, the function accepts a second optional parameter that is used as a human-
readable name of the recipient for the header.
$this->addBcc(“logger@eu.objectiflune.com”,”Logger”)
l setHtmlContent: Sets the content type of the message body to text/html (default).
$this->setHtmlContent()
l setPlainTextContent: Sets the content type of the message body to text/plain.
$this->setPlainTextContent()
©2010 Objectif Lune Inc - 154 -