Help for this page

Select Code to Download


  1. or download this
    use Mime::Lite
    MIME::Lite->send('smtp', $mail_server_name_or_ip_address, TimeOut=>60)
    +;
    ...
     Data=>$body_of_email
    );
    $msg->send;
    
  2. or download this
     use Net::SMTP
     my $smtp=Net::SMTP->new($mailserver_name_or_ip_address);
    ...
     $smtp->datasend("\n$body_of_email\n");
     $smtp->dataend();
     $smtp->quit;