Forum Moderators: coopster
[google.com.pk...]
[edited by: dreamcatcher at 4:41 pm (utc) on May 19, 2007]
[edit reason] Fixed side scroll. [/edit]
A known PHP “helper” has built a tutorial in conjunction with the class developers; at first glance it sounds like a good class (although was not updated since a while) I might look at it in depth and report
What I like is its portability but as mentioned I am not (for now) really able to discuss it :)
I guess I will also search a bit among SF other similar classes.
Looks like I am on my way to built a decent mailer
.. we'll see I'll keep reporting
<edit>
Typo
</edit>
For example (I did not spent too much time around it but..)
following the tutorial and trying as a next step to send HTML email causes an error "Call to undefined method etc..."
this is where a modification applies
the main class.phpmailer needs an addition
go to line: 230 and add:
// needs this addition to send HTML
function Body($htmlBody)
{
$this->Body = $htmlBody;
}
Done!
when I'll get the chance I will keep adding