我编写了一个 perl 脚本来使用 gmail 的 smtp 服务器发送电子邮件:smtp.gmail.com -
use Net::SMTP;
my $smtp = Net::SMTP->new('smtp.gmail.com',
Port=> 587,
Timeout => 20,
Hello=>'user@gmail.com'
);
print $smtp->domain,"\n";
$sender = "user@gmail.com";
$password = "mypassword";
$smtp->auth ( $sender, $password ) or die "could not authenticate\n";
$receiver = "user@gmail.com";
$subject = "my custom subject";
$smtp->mail($sender);
$smtp->to($receiver);
$smtp->data();
$smtp->datasend("To: <$reciever> \n");
$smtp->datasend("From: <$sender> \n");
$smtp->datasend("Content-Type: text/html \n");
$smtp->datasend("Subject: $subject");
$smtp->datasend("\n");
$smtp->datasend('the body of the email');
$smtp->dataend();
$smtp->quit();
print "done\n\n";
对于“用户”,我有我的 gmail 用户名,对于“我的密码”,我有密码。但是,当我运行此代码时,它会在身份验证本身停止,给出:无法进行身份验证。
我能够连接到 google 的 smtp 服务器,因为我得到:'mx.google.com',结果是:
print $smtp->domain,"\n";
我做错了什么?请帮忙。