Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: How do I send e-mail from my Perl Program?

by silent11 (Vicar)
on Feb 08, 2002 at 16:42 UTC ( [id://144133]=note: print w/replies, xml ) Need Help??


in reply to How do I send e-mail from my Perl Program?

I use Mail::Sendmail, here is some code that use and reuse. Be usre to set your mail server in sendmail.pm tho, here is a snipped of code that will send HTML email.
use Mail::Sendmail; %mail = ( from => 'me@domain.com', to => 'you@domain.com', subject => 'Test HTML mail', 'content-type' => 'text/html; charset="iso-8859-1"', ); $mail{body} = <<END_OF_BODY; <html> <head> <style> body {font-family: Verdana; size: 10px; color:black;} </style> </head> <body> Here is the contents of your email, use html as you wish ...... have f +un! </body> </html> END_OF_BODY sendmail(%mail) || print "Error: $Mail::Sendmail::error\n";
  - Silent11

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://144133]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (8)
As of 2024-04-19 12:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found