4

我想使用 Gmail 发送电子邮件。为此,我只需运行以下命令

pear install Mail Mail_Mime

我的 php 文件(filename.php)代码如下

<?php
  require_once "Mail.php";
  $from = 'from@gmail.com';
  $to = 'to@gmail.com';
  $subject = 'Hi!';
  $body = "Hi,\n\nHow are you?";
  $headers = array(
      'From' => $from,
      'To' => $to,
      'Subject' => $subject
  );
  $smtp = Mail::factory('smtp', array(
          'host' => 'ssl://smtp.gmail.com',
          'port' => '465',
          'auth' => true,
          'username' => 'from@gmail.com',
          'password' => 'password'
      ));
  $mail = $smtp->send($to, $headers, $body);
  if (PEAR::isError($mail)) {
      echo('<p>' . $mail->getMessage() . '</p>');
  } else {
      echo('<p>Message successfully sent!</p>');
  }
?>

当我使用以下命令运行此“filename.php”时

php filename.php

我收到以下错误

PHP Warning:  include_once(Net/SMTP.php): failed to open stream: No such file or directory in /usr/share/pear/Mail/smtp.php on line 365
PHP Warning:  include_once(): Failed opening 'Net/SMTP.php' for inclusion (include_path='.:/usr/share/pear:/usr/share/php') in /usr/share/pear/Mail/smtp.php on line 365
PHP Fatal error:  Class 'Net_SMTP' not found in /usr/share/pear/Mail/smtp.php on line 366

我正在使用 CentOS 7。

4

2 回答 2

16

现在它为我工作。我只是使用以下步骤来解决这个问题:

1. pear upgrade --force --alldeps http://pear.php.net/get/PEAR-1.10.1
2. pear clear-cache
3. pear update-channels
4. pear upgrade
5. pear upgrade-all
6. pear install Auth_SASL
7. pear install pear/Net_SMTP

之后一切正常。

感谢大家。

于 2017-07-24T12:58:44.157 回答
3

对于 Windows 机器 -

Net_SMTP 是 SMTP 协议的一种实现。您需要安装该扩展程序。通过在 CMD 中运行以下命令。

pear install Net_SMTP

确保您在环境路径中安装并设置了 pear。

于 2019-09-24T21:16:13.323 回答