is it possiblel to use the include to pull in a html doc so i can then use the following code - i'm having problems with it?
$message = include('emails/usa_daily_2007-11-29.htm');
$headers = "From: $from\r\n";
$headers .= "Content-type: text/html\r\n";
$success = mail($to, $subject, $message, $headers);
what i would like to do is send the html code (email template) from an external url i.e. emails/usa_daily_2007-11-29.htm.
can anyone help?
Thank you
Gareth