rajeshkumar created the topic: Send an HTML email using perl and sendmail
Send an HTML email using perl and sendmail
open(MAIL,"|/usr/sbin/sendmail -t");
## Mail Header
print MAIL "To: rajeshk\@xxx.com\n";
print MAIL "From: rajeshk\@xxxx.com\n";
print MAIL "Subject: TEST\n";
## Mail Body
print MAIL "Content-Type: text/html; charset=ISO-8859-1\n"
. "
close(MAIL)
Regards,
Rajesh Kumar
Twitt me @ twitter.com/RajeshKumarIn
Latest posts by Rajesh Kumar (see all)
- Best AI tools for Software Engineers - November 4, 2024
- Installing Jupyter: Get up and running on your computer - November 2, 2024
- An Introduction of SymOps by SymOps.com - October 30, 2024