[thelist] tutorials for html email

Daniel J. Cody djc at starkmedia.com
Thu Jun 7 12:07:43 CDT 2001


If you have access to a Unix box with sendmail, a *very* easy way to do
it is like so: Create a file called mail.html with contents something
like this:


From: you at foo.com
To: yourhomey at homeyland.com
Subject: simple HTML email
MIME-Version: 1.0
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Disposition: inline; filename="mail.html"
Content-Base: http://www.foo.com/

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"
                        "http://www.w3.org/TR/REC-html40/loose.dtd">
<HTML>
<HEAD>
        <TITLE>Test email</TITLE>
</HEAD>
<body>
<p>Hi!</p>
<p>
<strong>This is a test HTML Message</strong>
</p>
</BODY>
</HTML>

Save it, then from the command line, enter 'sendmail -t < mail.html'
(without the quotes). That will send your message to everyone listed in
the To: field(sperate multiple entries with commas)

Easy cheesy :)

.djc.


"Canfield, Joel" wrote:
> 
> Here's how I do it w/Outlook 2000 on Win2K:




More information about the thelist mailing list