in reply to No mail in the SMTP inbox
well, i just prefer this method over Net::SMTP... so thats my two cents.use Mail::Sendmail; %mail = ( To => 'someone@somewhere.moo', From => 'me@here.mootoo', Message => "mommy says chocolate milk is from brown cows and + strawberry is from red ones." ); if (sendmail %mail) { print "Yay. It worked.\n" } else { print "DOH!: $Mail::Sendmail::error \n" }
|
---|