in reply to sending an email using sendmail so that it looks like a webpage and not html
hope that helpsopen (MAIL, "|/path/to/sendmail -oi -t") || die "Couldn't open sendmai +l: $!\n"; print MAIL "From: user\@somedomain.com\n"; print MAIL "To: $recip\n"; print MAIL "Subject: whatever\n"; print MAIL "Content-type: text/html\n\n"; print MAIL qq*html content would go here*; close(MAIL);
|
|---|