in reply to Sending email on a Windows enviroment not using ActivePerl or StrawberryPerl

I have a working solution on Win32 to send mail via SMTP which is only reliant on Net::SMTP and MIME::Base64. Takes care of authorization. It is very low level (does things like $smtp->datasend("AUTH LOGIN\n");), still if you are interested I can bring it to a readable shape.
  • Comment on Re: Sending email on a Windows enviroment not using ActivePerl or StrawberryPerl
  • Download Code

Replies are listed 'Best First'.
Re^2: Sending email on a Windows enviroment not using ActivePerl or StrawberryPerl
by BAJA (Novice) on Feb 02, 2012 at 14:26 UTC
    Thanks and yes would like to try your solution.
      I had to do the login in this manual way because I had problems with the authentication (the method provided by the SMTP object simply did not work: I did some research and turned out that others are having similar problems on Win32). My original code has hard coded server and user names. Now I've tried to comprise things in one sub called 'sendmail'. I've tested this sub to the extent of sending one e-mail and it worked. The parameters to the sub should be obvious (set 'debug' to '0' if everything works fine, set it to '1' and you will get a verbose debug info with the commands the SMTP object sends to the server and the responses - in my case this proved to be very helpful):
      use Net::SMTP; use MIME::Base64; # usage: sendmail(mailserver,username,password,from,to,subject,content +,debug); sub sendmail { my ($mail_server,$username,$password,$from,$to,$subject,$content,$debu +g)=@_; $smtp = Net::SMTP->new( $mail_server, Timeout => 30, Debug => $debug, ); $smtp->datasend("AUTH LOGIN\n"); $smtp->response(); $smtp->datasend(encode_base64($username)); $smtp->response(); $smtp->datasend(encode_base64($password)); $smtp->response(); $smtp->mail($from); $smtp->to($to); $smtp->data(); $smtp->datasend("To: $to\n"); $smtp->datasend("From: $from\n"); $smtp->datasend("Content-Type: text/html\n"); $smtp->datasend("Subject: $subject"); $smtp->datasend("\n"); $smtp->datasend($content); $smtp->datasend("\n"); $smtp->dataend(); $smtp->quit; }