簡體   English   中英

無法連接到SMTP服務器(PHPmailer)

[英]Trouble connecting to SMTP server (PHPmailer)

我有一個網站設置為使用PHPmailer將網站發送到同一域的電子郵件地址,但是我無法使其連接到SMTP服務器。

這是我的電子郵件配置文件中的一部分:

$config = (object) array();

$config->email_from_addr      = "noreply@mywebsite.com";
$config->email_host           = "mail.mywebsite.com";
$config->email_from_password  = '********';
$config->email_from_name      = "Title";

$config->email_to             = 'info@mywebsite.com';
$config->email_subject        = "Contact email from mywebsite";

用於發送電子郵件的PHP在這里:

$phpmailer = new PHPMailer();
$phpmailer->IsSMTP();                                             // set mailer to use SMTP
if($config->use_gmail == true)
{
    $phpmailer->Port = 465;
    $phpmailer->Host = "smtp.gmail.com";
}
else
{
    $phpmailer->Host = $config->email_host;                 // specify main and backup server
}
$phpmailer->SMTPAuth = true;                                // turn on SMTP authentication
$phpmailer->Username = $config->email_from_addr;            // SMTP username
$phpmailer->Password = $config->email_from_password;        // SMTP password

$phpmailer->From = $config->email_from_addr;
$phpmailer->FromName = $config->email_from_name;
$phpmailer->AddAddress($config->email_to);

$phpmailer->WordWrap = 80;                                   // set word wrap to 80 characters
$phpmailer->IsHTML(true);                                    // set email format to HTML

$phpmailer->Subject = $config->email_subject;
$phpmailer->Body    = $message;
$phpmailer->AltBody = $message;

?>
<div style="float:left; display:block; background:#F1F1F1; margin:26px 0 60px 10px; height:200px; padding-top:140px; width:330px; text-align:center; font-size:16px; font-weight:bold" class="red"> 
<?php
if(@!$phpmailer->Send())
{
?>
<br />
<br />
Your email could not be sent.
<?php   
}
else
{
?>
Your email has been sent. Someone will reply to it shortly.
<?php

我只是不知道為什么它不連接到我的郵件服務器。 也許我做錯了什么。

試試if(!(@$phpmailer->Send()))而不是if(@!$phpmailer->Send())

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM