Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: Email With Attachment

by tphyahoo (Vicar)
on Mar 08, 2007 at 18:01 UTC ( [id://603867]=note: print w/replies, xml ) Need Help??


in reply to Email With Attachment

mime lite for attachments demo:
#!/usr/bin/perl # use warnings; use strict; use MIME::Lite; use Net::SMTP; my $from = 'blee@blah.com'; my $to = 'blee@blah.com'; my $msg = MIME::Lite->new( From => $from, TO => $to, Subject => 'Testing Text Message ', Type =>'multipart/mixed', ); $msg->attach( Type =>'TEXT', Data =>"Mime message with attachment, sent with Net: +:SMTP" ); $msg->attach(Type =>'image/gif', Path =>'1.jpg', Filename =>'1.jpg', Disposition => 'attachment' ); $msg->attach(Type =>' text/tab-separated-values', Path =>'./2.csv', Filename =>'2.csv', Disposition => 'attachment' ); my $Servername = "mail.blah.com"; my $smtp = Net::SMTP->new($Servername); $smtp->mail($from); $smtp->to($to); my $msg_stringified = $msg->as_string(); $smtp -> data( $msg_stringified ) || warn("error sending email message +:" . $msg_stringified ); $smtp -> quit;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others perusing the Monastery: (3)
As of 2024-04-19 18:34 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found