使用PHPMailer通过电子邮件发送短信

时间:2016-01-07 02:55:25

标签: php email phpmailer

美好的一天,我在谷歌发现你可以通过输入收件人手机号码和使用phpmailer的短信网关发送短信,我在手机上测试了它但由于某种原因我没有收到任何短信。这是我的PHP代码:

require($_SERVER['DOCUMENT_ROOT']."/PHPMailer/PHPMailerAutoload.php");

$mail = new PHPMailer();
// Configure smptp
$mail->IsSMTP();
$mail->SMTPDebug = 2;
$mail->SMTPAuth = true;
$mail->SMTPSecure = 'tls';
$mail->Host = "smtp.gmail.com";
$mail->Port = 587;
$mail->Encoding = '7bit';
// Authentication
$mail->Username = "**********@gmail.com";
$mail->Password = "******";
// Compose
$mail->Subject = "Testing";
$mail->Body = "Testing";
// Send to
$mail->AddAddress("***********@mysmart.mymobile.ph");
var_dump($mail->send()); //Send!

这是var_dump enter image description here

我住在菲律宾。感谢。

enter image description here

0 个答案:

没有答案