私はwamp server2を持っていましたが、phpmailer5をインストールしても問題ありませんか? 私はここにthis sitesmtp php mailer not responding
を使用し、私のphp.iniの はコードです:
<?php
require_once('./PHPMailer_v5.1/class.phpmailer.php');
define('GUSER','[email protected]'); // GMail username
define('GPWD','mypass'); // GMail password
function smtpmailer($to, $from, $from_name, $subject, $body) {
global $error;
$mail = new PHPMailer(); // create a new object
$mail->IsSMTP(); // enable SMTP
$mail->SMTPDebug = 0; // debugging: 1 = errors and messages, 2 = messages only
$mail->SMTPAuth = true; // authentication enabled
$mail->SMTPSecure = 'ssl'; // secure transfer enabled REQUIRED for GMail
$mail->Host = 'smtp.gmail.com';
$mail->Port = 25;
$mail->Username = GUSER;
$mail->Password = GPWD;
$mail->SetFrom($from, $from_name);
$mail->Subject = $subject;
$mail->Body = $body;
$mail->AddAddress($to);
if(!$mail->Send()) {
$error = 'Mail error: '.$mail->ErrorInfo;
return false;
} else {
$error = 'Message sent!';
return true;
}
}
smtpmailer('[email protected]','[email protected]', 'phpmailer', 'test mail message', 'Hello World!');
if (smtpmailer('[email protected]','[email protected]', 'phpmailer', 'test mail message', 'Hello World!')) {
echo "sent";
}
if (!empty($error)) echo $error;
?>
はここに出力されます:
SMTP Error: Could not connect to SMTP host. SMTP Error: Could not authenticate. Mail error: SMTP Error: Could not authenticate.
その後、私はSMTPにSmtpServerはをphp.iniの設定として行ってきました.google.com
SMTP = smtp.google.com
再び変更なし
phpmailerはphp.iniメール設定を使用しません。それらは一般にローカルMTAがインストールされておらず、外部サービスを使用しなければならないWindowsボックス用です。 –
それから何が問題なのですか? php.iniを変更する前に私も問題があった – Nickool
私は窓システムを持っています – Nickool