Beefy Boxes and Bandwidth Generously Provided by pair Networks
Problems? Is your data what you think it is?
 
PerlMonks  

Re: sending email on windows

by the_hawk_1 (Scribe)
on Jul 20, 2010 at 15:07 UTC ( [id://850444]=note: print w/replies, xml ) Need Help??


in reply to sending email on windows

Here is the way we are dealing with emails and attachemets. We are using ActivePerl on windows XP Pro.
sub sendemail { our $file; use Mail::Sendmail; use MIME::QuotedPrint; use MIME::Base64; my %mail = (smtp => 'smtp-int', To => 'foo@bar.com, foo2@bar.com', Cc => '', From => 'no-reply@foobar.com>', Subject => 'Email subject' ); my $boundary = "====" . time() . "===="; $mail{'content-type'} = "multipart/mixed; boundary=\"$boundary\""; my $message = encode_qp( "Email body. Also use to be called messag +e." ); open (F, $file) or die "Cannot read $file: $!"; binmode F; undef $/; $mail{body} = encode_base64(<F>); close F; $boundary = '--'.$boundary; $mail{body} = <<END_OF_BODY; $boundary Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable $message $boundary Content-Type: application/octet-stream; name="$file" Content-Transfer-Encoding: base64 Content-Disposition: attachment; filename="$file" $mail{body} $boundary-- END_OF_BODY sendmail(%mail) or die $Mail::Sendmail::error; }
Hope this can help you...
The_Hawk_1 - an ignorant monk to be...

Replies are listed 'Best First'.
Re^2: sending email on windows
by nyj (Novice) on Jul 21, 2010 at 15:01 UTC
    Thanks very much Hawk, that's great!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chanting in the Monastery: (2)
As of 2024-04-25 06:44 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found