danielmcormond / postmark-cakephp

A CakePHP 1.3 component used for sending email via the Postmark delivery service

Home Page:http://danielmcormond.com/2010/07/16/postmark-cakephp-component/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Option for sending both html & text in the one email.

elricho opened this issue · comments

Hi Daniel,
Great component. FWIW : Quick change to allow sending both html and text in the one email & thought i'd feed it back. Update Below.
Cheers
Richard

// HtmlBody
if ($this->sendAs === 'html' || $this->sendAs === 'both') {
$message['HtmlBody'] = $this->htmlMessage;
}

Thanks! I've included this in the latest revision.