|
Posted by Richard Davey on 09/25/05 21:09
Hello Ross,
Sunday, September 25, 2005, 2:27:42 PM, you wrote:
> I am using php mailer and am trying to find a new way to make the html email
> body instead of the old
> Can I make a whole html mage and just link it?? Or include ('mypage.htm')
$mail_body = file_get_contents('path/to/your/html/email.html');
Will save embedding all that HTML into your PHP scripts. You could
then do simply variable replacement on $mail_body to customise the
messages if you so wish.
--
Best regards,
Richard Davey
Zend Certified Engineer
[Back to original message]
|