SMTPとPEARを使用してPHPで添付ファイル付きの電子メールを送信しようとしていますが、 :助けてくださいhere からコードを持っ7.1.6
:]」認証に失敗しました[SMTP:STARTTLSが失敗しました(コード:220、レスポンス:2.0.0 TLSを起動する準備ができました])
<?php
require_once "Mail.php"; // PEAR Mail package
require_once ('Mail/mime.php'); // PEAR Mail_Mime packge
$from = "Your Mom <[email protected]>";
$to = "Me <recepient [email protected]>";
$subject = 'Call Me!';
$headers = array ('From' => $from,'To' => $to, 'Subject' => $subject);
// text and html versions of email.
$text = 'Hi son, what are you doing?nnHeres an picture of a cat for you.';
$html = 'Hi son, what are you doing?<br /><br />Here is an picture of a cat
for you.';
// attachment
$file = 'fromc.xls';
$crlf = "n";
$mime = new Mail_mime($crlf);
$mime->setTXTBody($text);
$mime->setHTMLBody($html);
$mime->addAttachment($file, 'text/plain');
$body = $mime->get();
$headers = $mime->headers($headers);
$host = "smtp.gmail.com";
$username = "[email protected]";
$password = "xyz";
$smtp = Mail::factory('smtp', array ('host' => $host, 'auth' => true,
'username' => $username,'password' => $password));
$mail = $smtp->send($to, $headers, $body);
if (PEAR::isError($mail)) {
echo("<p>" . $mail->getMessage() . "</p>");
}
else {
echo("<p>Message successfully sent!</p>");
}
?>`
PHPのバージョン:1.10.1 PEARのバージョンSTARTTLSは(::220、応答2.0.0 TLSを開始する準備ができてコードを)失敗しました私はエラーをクリアするために...