我在Email::Send::SMTP::Gmail的帮助下通过 Gmail 使用 Perl 发送电子邮件。脚本存储为send.pl
. 我正在访问它localhost/send.pl
。我必须在这个 Perl 脚本中输入我的 Gmail 帐户密码,然后从我的浏览器访问它。
浏览此网站的任何人都可以通过任何方式获取我的 Gmail 密码吗?
我的代码:
use strict;
use warnings;
use Email::Send::SMTP::Gmail;
my $mail = Email::Send::SMTP::Gmail->new(
-smtp => 'gmail.com',
-login => 'whateveraddress@gmail.com',
-pass => 'whatever_pass'
);
$mail->send(
-to => 'target@xxx.com',
-subject => 'Hello!',
-charset => 'KOI8-R',
-verbose => '1',
-body => 'Just testing it',
-attachments => 'full_path_to_file'
);
$mail->bye;