{"id":2437,"date":"2017-12-08T10:34:01","date_gmt":"2017-12-08T10:34:01","guid":{"rendered":"http:\/\/www.scmgalaxy.com\/tutorials\/?p=2437"},"modified":"2025-02-01T23:08:07","modified_gmt":"2025-02-01T23:08:07","slug":"using-perl-send-an-html-email","status":"publish","type":"post","link":"https:\/\/www.devopsschool.com\/blog\/using-perl-send-an-html-email\/","title":{"rendered":"Using perl send an html email"},"content":{"rendered":"<p><strong>rajeshkumar created the topic: using perl send an html email<\/strong><\/p>\n<p><code>Using perl send an html email<\/p>\n<p>#!\/usr\/bin\/perl -w<br \/>\nuse strict;<br \/>\nuse MIME::Lite;<br \/>\n# SendTo email id<br \/>\nmy $email = 'rajesh@scmgalaxy.com';<br \/>\n# create a new MIME Lite based email<br \/>\nmy $msg = MIME::Lite->new<br \/>\n(<br \/>\nSubject => \"HTML email test\",<br \/>\nFrom    => 'rajesh@scmgalaxy.com',<br \/>\nTo      => rajesh@scmgalaxy.com,<br \/>\nType    => 'text\/html',<br \/>\nData    => '<H1>Hello<\/H1><br \/>This is a test email.<br \/>\nPlease visit our site <a href=\"http:\/\/cyberciti.biz\/\" target=\"_blank\" rel=\"noopener\">online<\/a><\/p>\n<hr>\n<p>'<br \/>\n);<br \/>\n$msg->send();<\/p>\n<p>use strict;<br \/>\nuse Email::Sender::Simple qw(sendmail);<br \/>\nuse Email::Simple;<br \/>\nuse Email::Simple::Creator;<\/p>\n<p>  my $email = Email::Simple->create(<br \/>\n    header => [<br \/>\n      To      => '\"RAJESH KUMAR\" <rajesh@scmgalaxy.com.>',<br \/>\n      From    => '\"RAJESH KUMAR\" <rajesh@scmgalaxy.com>',<br \/>\n      Subject => \"don't forget to *enjoy the sauce*\",<br \/>\n    ],<br \/>\n    body => \"This message is short, but at least it's cheap.\\n\",<br \/>\n  );<br \/>\n  sendmail($email);<\/code><\/p>\n<p>Regards,<br \/>\nRajesh Kumar<br \/>\nTwitt me @ <a href=\"http:\/\/twitter.com\/RajeshKumarIn\" target=\"_blank\" rel=\"noopener\">twitter.com\/RajeshKumarIn<\/a><\/p>\n<p><strong>rajeshkumar replied the topic: Re: using perl send an html email<\/strong><\/p>\n<p>Some Good Reference<\/p>\n<p><a href=\"http:\/\/www.cyberciti.biz\/faq\/how-do-i-send-html-email-from-perl\/\" target=\"_blank\" rel=\"noopener\">www.cyberciti.biz\/faq\/how-do-i-send-html-email-from-perl\/ <\/a><br \/>\n<a href=\"http:\/\/www.revsys.com\/writings\/perl\/sending-email-with-perl.html\" target=\"_blank\" rel=\"noopener\">www.revsys.com\/writings\/perl\/sending-email-with-perl.html<\/a><\/p>\n<p>Regards,<br \/>\nRajesh Kumar<br \/>\nTwitt me @ <a href=\"http:\/\/twitter.com\/RajeshKumarIn\" target=\"_blank\" rel=\"noopener\">twitter.com\/RajeshKumarIn<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"<p>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 = &#8216;rajesh@scmgalaxy.com&#8217;;&#8230; <\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_joinchat":[],"footnotes":""},"categories":[14],"tags":[175],"class_list":["post-2437","post","type-post","status-publish","format-standard","hentry","category-perl","tag-perl"],"_links":{"self":[{"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/posts\/2437","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/comments?post=2437"}],"version-history":[{"count":3,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/posts\/2437\/revisions"}],"predecessor-version":[{"id":2441,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/posts\/2437\/revisions\/2441"}],"wp:attachment":[{"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/media?parent=2437"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/categories?post=2437"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devopsschool.com\/blog\/wp-json\/wp\/v2\/tags?post=2437"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}