Using perl send an html email
rajeshkumar created the topic: using perl send an html email Using perl send an html email #!/usr/bin/perl -w use strict; use MIME::Lite; # SendTo email id my $email = ‘rajesh@scmgalaxy.com’; # create a new MIME Lite based email my $msg = MIME::Lite->new ( Subject => “HTML email test”, From => ‘rajesh@scmgalaxy.com’, To => rajesh@scmgalaxy.com, Type…
