in reply to Sending email from a Vista machine with ActiveState PPM modules

For what it is worth, I am not tied to Gmail, I am willing to use whatever free email service that actually works... Any thoughts anyone?

I have learned by playing that sendmail works if you have your own sendmail server, which I don't... I have a gmail and yahoo.. willing to use anything, just to try and get this running....

  • Comment on Re: Sending email from a Vista machine with ActiveState PPM modules

Replies are listed 'Best First'.
Re^2: Sending email from a Vista machine with ActiveState PPM modules
by drblove27 (Sexton) on Apr 12, 2008 at 02:42 UTC
    Hi All, I am posting this reply for people who may be reading this thread if they have the same questions. I finally got this to work, but not for free. Essentially I signed up for Yahoo Mail Plus (20 bucks a year), which allowed me to access their SMTP server (smtp.mail.yahoo.com) and used Mail::SendEasy (downloadable from ActiveState PPM 5.10). Here are the settings that I used

    use Mail::SendEasy ; my $mail = new Mail::SendEasy( smtp => 'smtp.mail.yahoo.com' , user => 'yahoo_id' , #no @yahoo.com pass => 'yahoo_password' , ) ; my $status = $mail->send( from => 'yahoo_id@yahoo.com' , from_title => 'Whatever' , reply => 'yahoo_id@yahoo.com' , error => 'yahoo_id@yahoo.com' , to => 'where_ever' , cc => 'where_ever_2' , subject => "MAIL Test" , msg => "The Plain Msg..." , html => "<b>The HTML Msg...</b>" , msgid => "0101" , ) ; if (!$status) { print $mail->error ;}
    Also for what it is worth, this exact method did not work for Gmail (I never could get any code up and running to use GMail)