Hey thanks for the reply and sorry about the delay. I decided to go in a different direction.
I do have a question you might be able to help with.
When I have the variable:
$newsletter = "html code here";
and then send the e-mail with:
$headers .= chunk_split(base64_encode("$newsletter"));
//send e-mail
mail($client_email_address_search, $clientsubject, $clientbody, $headers);
It sends the html fine. However when I try to use an include statement which has the same code, it just echoes out the code and I receive garbage.
Somehow the include is not placing the html into $variable the same it does when I just hard code as in:
$newsletter = "html code here";
$newsletter = include ("newsletters/Newsletter_HTML_Header.inc");
Thnaks for any help,
Gary