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)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.