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