Beefy Boxes and Bandwidth Generously Provided by pair Networks
The stupid question is the question not asked
 
PerlMonks  

Re: How do I send an email with Perl (including an attachment)?

by fongsaiyuk (Pilgrim)
on Dec 06, 2000 at 19:29 UTC ( [id://45225]=note: print w/replies, xml ) Need Help??


in reply to How do I send an email with Perl (including an attachment)?

I use Mail::Sender pretty extensively. Here's a code snippet to get you started for sending an email with an attachment. (We let the user's email client determine the helper application to execute based on the file extension of the filename we attach to the message.)

Mail::Sender lets you customize the MIME stuff, but for simple single files you don't need to do that.

sub send_email { my $sender = new Mail::Sender({ from => $from_address, }); $sender->OpenMultipart({ to => $to_email, subject => $subject, }); $sender->Body; $sender->SendLine( $msg_body ); $sender->SendFile({ description => 'Raw Data File', encoding => '7BIT', file => $tempfile, }); $sender->Close; }

I really like this module. You should seriously consider installing it if you find that you are doing a lot with emailing attachments. It has saved me tons of time.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (5)
As of 2024-04-19 04:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found