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

Re: email on WIN32

by dorko (Prior)
on Oct 26, 2009 at 13:15 UTC ( [id://803253]=note: print w/replies, xml ) Need Help??


in reply to email on WIN32

I've been using Email::Stuff lately. Doesn't get any easier. From the docs (with a mod for using SMTP):
# Prepare the message my $body = <<'AMBUSH_READY'; Dear Santa I have killed Bun Bun. Yes, I know what you are thinking... but it was actually a total acc +ident. I was in a crowded line at a BayWatch signing, and I tripped, and st +ood on his head. I know. Oops! :/ So anyways, I am willing to sell you the body for $1 million dollars +. Be near the pinhole to the Dimension of Pain at midnight. Alias AMBUSH_READY # Create and send the email in one shot Email::Stuff->from ('cpan@ali.as' ) ->to ('santa@northpole.org' ) ->bcc ('bunbun@sluggy.com' ) ->text_body($body ) ->attach (io('dead_bunbun_faked.gif')->all, filename => 'dead_bunbun_proof.gif') ->using ('SMTP', Host => 'smtp.mail.yahoo.com') ->send;

Cheers,

Brent

-- Yeah, I'm a Delt.

Replies are listed 'Best First'.
Re^2: email on WIN32
by fionbarr (Friar) on Oct 26, 2009 at 14:02 UTC
    Hi Brent Here's what I'm doing (and it doesn't work). I'm feeling pretty stupid about this.
    use Email::Stuff; use IO::All; $body = 'this is a test'; # Create and send the email in one shot Email::Stuff->from ('brejen@comcast.net' ) ->to ('ailithir@yahoo.com' ) ->bcc ('slyder2412@hotmail.com' ) ->text_body($body ) ->attach (io('test.doc')->all, filename => 'test.doc') ->using ('SMTP', Host => 'smtp.mail.yahoo.com') ->send;
        sorry, of course 'it does not work' is not very helpful...unfortunately, there is no error printed so I have no idea what further information to include.

Log In?
Username:
Password:

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

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

    No recent polls found