Help for this page

Select Code to Download


  1. or download this
    my $sender = Email::Send->new(
         {   mailer      => 'Gmail',
    ...
                            ]
         }
    );
    
  2. or download this
    MIME::Lite->send('smtp', 'smtp.gmail.com:587', Timeout => 60,AuthUser=
    +>$user, AuthPass=>$pass);$msg->send();
    
  3. or download this
    my $smtp = new Net::SMTP::TLS(
       'smtp.gmail.com',
    ...
       Password=>   $password,
       Timeout =>   30
    );