在php中使用邮件功能发送短信

时间:2017-08-17 03:42:27

标签: php sms-gateway

有人帮我了解如何使用邮件功能发送短信 这是我的PHP代码:

   <?php
   $to = "xxxxxxxxxxx@smart.mms.ph";
   $from = "xxxxxxxx@gmail.com";
   $message = "sample";
   $header = "From: $from\n";
   mail($to,'',$message,$header);
   ?> 

我测试代码后出现了一些错误: 说:警告:mail():无法连接到“localhost”端口25的邮件服务器,验证php.ini中的“SMTP”和“smtp_port”设置,或者在C:\中使用ini_set()第6行的xampp \ htdocs \ sample-sms \ send.php

我还将我的电子邮件发送到我的php.ini中的邮件功能

      SMTP=localhost
      smtp_port=25
      sendmail_from = xxxxxxxx@gmail.com

0 个答案:

没有答案