1
#!/usr/bin/perl
my $mail=Email::Send::SMTP::Gmail->new(-smtp=>'smtp.gmail.com',
-login=>'[email protected]',
-pass=>'password');
my $body = '<h1>buddy I got it ...</h1>';
$mail->send(-to=>'[email protected]',-cc=>'',-subject=>'subject',
-body=>$body,-contenttype=>'text/html');
$mail->bye;
Everytime i run my script here's the output電子郵件發送:: :: SMTP :: Gmail的HTML標籤不工作
有人可以建議和幫助我,爲什麼是我的HTML(身體電子郵件)無法正常工作。
'my $ body ='
buddy我明白了。 。 。 '
';' – Hans