[thelist] HTML Email -- Cumulative resources

Darin Lang sub at doolang.com
Mon Apr 18 10:55:02 CDT 2005


This is a cumulative listing of all that I have found out about it from 
here and elsewhere.

mailout and tracking cheap
http://www.campaignmonitor.com/

do it yourself mailout, no tracking, easy set-up, easy operation, works 
great.
http://phpmailer.sourceforge.net/
Here's a script  from Maximillian Von Schwanekamp that works works with 
it:
$BodyHtml = file_get_contents("html_email.html");
$BodyText = file_get_contents("text_email.txt");
$mailer =& new PHPMailer();
$mailer->IsSendmail();
$mailer->Body    = $BodyHtml;
$mailer->AltBody = $BodyText;
$mailer->AddAddress($to_email, $to_name);
if(! $mailer->Send() ) { echo "Mail Sent";  } else { echo "Couldn't 
Send Mail"; }

finally a short design guide
http://www.sitepoint.com/article/code-html-email-newsletters

and these which were from a recent thread of the same title started by 
yours truly
On Apr 6, 2005, at 4:52 AM, Jan Brasna wrote:
>
> See the thread 
> <http://archivist.incutio.com/viewlist/css-discuss/55222> in CSS-D 
> archive for some basic info, visit
> the CSS-D wiki <http://css-discuss.incutio.com/?page=StyleInEmail>
> and ALA <http://www.alistapart.com/articles/cssemail/> for next 
> reference.

Hope that helps
Darin Lang
http://Doolang.com

On Apr 14, 2005, at 6:56 AM, Mark Groen wrote:

> ----- Original Message -----
> From: <>
> To: <thelist at lists.evolt.org>
> Sent: April 14, 2005 4:31 AM
> Subject: [thelist] HTML Email
>
>
>> Please excuse this odd question.  I have never consciously done
> HTML email.  How
>> would I create a HTML email like a newsletter to publish?  Thanks!
>
> If you want to learn how, go here:
>
> http://www.website101.com/email_e-mail/HTML_email.html



More information about the thelist mailing list