Re: Sending HTML Emails with SENDMAIL

2002-10-08 Thread zentara
On Tue, 8 Oct 2002 10:10:55 +1000 , [EMAIL PROTECTED] (Colin Johnstone) wrote: >I need help sending HTML emails with sendmail have tried this > >open (SENDMAIL, "| $sendmailpath -t"); print SENDMAIL "Content-Type: text/html\n"; >print SENDMAIL "Subject: $subject\n"; >print SENDMAIL "From: $fro

Re: Sending HTML Emails with SENDMAIL

2002-10-08 Thread Janek Schleicher
Colin Johnstone wrote: > HI all, > > I need help sending HTML emails with sendmail have tried this > > $from="foo\@bar.com"; > $to= shift; ## yes this is enclosed in a function and I pass the email address as a >parameter > $subject="Latest News!"; > $sendmailpath="/usr/sbin/sendmail"; > >