如何在Outlook Exchange中使用PHPMailer?

时间:2015-06-04 21:53:06

标签: php email exchange-server phpmailer

我四处寻找有关使用PHP发送电子邮件的一些信息,似乎PHPMailer是可行的方式。

我对SMTP以及邮件的生成方式了解不多,所以我不知道该怎么办才能开始。

我的公司在后端使用Microsoft Exchange,在前端使用Microsoft Outlook 2007。我正在尝试编写一些PHP代码,利用它来发送电子邮件,但我(令人惊讶的是)在网上找不到有关如何执行此操作的任何内容。

有人能指出我正确的方向吗?

更具体地说,PHPMailer示例列出了这些项目:

$mail->isSMTP();                                      // Set mailer to use SMTP
$mail->Host = 'smtp1.example.com;smtp2.example.com';  // Specify main and backup SMTP servers
$mail->SMTPAuth = true;                               // Enable SMTP authentication
$mail->Username = 'user@example.com';                 // SMTP username
$mail->Password = 'secret';                           // SMTP password
$mail->SMTPSecure = 'tls';                            // Enable TLS encryption, `ssl` also accepted
$mail->Port = 587;                                    // TCP port to connect to

但除了用户名和密码之外,我不知道在哪里可以找到这些信息。

0 个答案:

没有答案