我有一个网站可以说" www.abc.com"并托管在cpanel上。 此域名的管理员ID为admin,请说" admin@abc.com"。 现在我已经为iOS应用程序创建了一个Web服务,即进行注册。在此网络服务中,已向注册用户发送了一封电子邮件,表明他已在系统中成功注册。
假设我在系统中注册了电子邮件" test@abc.com"然后发送电子邮件至" test@abc.com"成功。但是当这封电子邮件发送给用户时,admin(admin@abc.com)也会收到此电子邮件的副本。
注意::我正在使用PHP邮件库发送电子邮件。
我发送电子邮件的代码::
$from = 'XXXX@gmail.com';
//$message = "test msg.";
//Create a new PHPMailer instance
$mail = new PHPMailer();
//Tell PHPMailer to use SMTP
$mail->isSMTP();
//Enable SMTP debugging
// 0 = off (for production use)
// 1 = client messages
// 2 = client and server messages
$mail->SMTPDebug = 2;
//Ask for HTML-friendly debug output
$mail->Debugoutput = 'error_log';
//Set the hostname of the mail server
$mail->Host = 'smtp.gmail.com';
//Set the SMTP port number - 587 for authenticated TLS, a.k.a. RFC4409 SMTP submission
$mail->Port = 465;
//Set the encryption system to use - ssl (deprecated) or tls
$mail->SMTPSecure = 'ssl';
//Whether to use SMTP authentication
$mail->SMTPAuth = true;
//Username to use for SMTP authentication - use full email address for gmail
$mail->Username = $from;
//Password to use for SMTP authentication
$mail->Password = "XXXXXX";
//Set who the message is to be sent from
$mail->setFrom($from, 'First Last');
//Set an alternative reply-to address
$mail->addReplyTo($from, 'First Last');
//Set who the message is to be sent to
$mail->addAddress($to, 'John Doe');
//Set the subject line
$mail->Subject = $subject;
//Read an HTML message body from an external file, convert referenced images to embedded,
//convert HTML into a basic plain-text alternative body
$mail->msgHTML($email_header.$message.$email_footer);
这样假设在我的系统中注册了100个用户,然后管理员将收到100封电子邮件。 我不知道为什么会发生这种情况。
我想停止向管理员发送电子邮件副本。
提前致谢。