首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >php mail()和aruba?

php mail()和aruba?
EN

Stack Overflow用户
提问于 2011-10-26 22:17:35
回答 1查看 2.5K关注 0票数 0

早上好,

可悲的是,我不得不用aruba.it做一个网站,我遇到了一个很大的问题,当我使用邮件()命令发送一个html邮件时,使用一些像gmail这样的服务器,邮件直接转到垃圾文件夹,我检查了标题,对我来说似乎很好…出于我的想法(和时间),我在这里请求帮助XD。在下面,您可以看到与标题一起发送的邮件的来源。

代码语言:javascript
复制
    Delivered-To: someone@gmail.com
    Received: by 10.68.50.233 with SMTP id f9cs182962pbo;
    Wed, 26 Oct 2011 07:00:41 -0700 (PDT)
    Received: by 10.227.197.197 with SMTP id el5mr9931909wbb.26.1319637640301;
    Wed, 26 Oct 2011 07:00:40 -0700 (PDT)
    Return-Path: <anonymous@webxc25s08.ad.aruba.it>
    Received: from smtpsmart1.aruba.it (smtpweb120.aruba.it. [62.149.158.120])
    by mx.google.com with SMTP id em13si1304523wbb.129.2011.10.26.07.00.39;
    Wed, 26 Oct 2011 07:00:40 -0700 (PDT)
    Received-SPF: pass (google.com: domain of anonymous@webxc25s08.ad.aruba.it designates 62.149.158.120 as permitted sender) client-ip=62.149.158.120;
    Authentication-Results: mx.google.com; spf=pass (google.com: domain of anonymous@webxc25s08.ad.aruba.it designates 62.149.158.120 as permitted sender)        smtp.mail=anonymous@webxc25s08.ad.aruba.it
    Received: (qmail 23053 invoked by uid 89); 26 Oct 2011 14:00:38 -0000
    Received: by simscan 1.2.0 ppid: 22702, pid: 22713, t: 1.4573s
    scanners: clamav: 0.88.4/m:40/d:1945 spam: 3.1.4
    X-Spam-Checker-Version: SpamAssassin 3.2.5 (2008-06-10) on
    smtpsmart1.fe.aruba.it
    X-Spam-Level: **
    X-Spam-Status: No, score=2.0 required=6.0 tests=BAYES_50,MIME_HTML_ONLY,
    RDNS_NONE autolearn=disabled version=3.2.5
    Received: from unknown (HELO webxc25s08.ad.aruba.it) (62.149.143.48)
    by smtpsmart1.fe.aruba.it with SMTP; 26 Oct 2011 14:00:36 -0000
    Received: (qmail 29688 invoked by uid 18945188); 26 Oct 2011 14:00:36 -0000
    Date: 26 Oct 2011 14:00:36 -0000
    Message-ID: <20111026140036.29687.qmail@webxc25s08.ad.aruba.it>
    To: someone@gmail.com
    Subject: Registrazione somesite.com
    MIME-Version: 1.0
    Content-type: text/html; charset=iso-8859-1
    To: nreguser6 creuser6 <someone@gmail.com>
    From: Admin <admin@somesite.com>


  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  <html>
  <head>
   <title></title>
   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  </head>
  <body>
   Benvenuto Utente nuovo
   <a   href="http://somesite.com/registrazione/attivazione/code/XXMS8ADzT1CJqZLMgmRBYA7nP">Attiva</a>
  </body>
</html>

如果您对如何解决它有任何想法,我将不胜感激!谢谢!

EN

回答 1

Stack Overflow用户

发布于 2018-11-14 03:21:22

ARUBA不鼓励使用mail(),而是鼓励使用PHPMailer。但是,您可以使用下面的代码来调整您需要的部分,以便测试和解决您的问题。

代码语言:javascript
复制
<?php

error_reporting(E_ALL);

// Generates boundary
$mail_boundary = "=_NextPart_" . md5(uniqid(time()));

$to = "someone@gmail.com";
$subject = "testing e-mail";
$sender = "admin@somesite.com";


$headers = "From: $sender\n";
$headers .= "MIME-Version: 1.0\n";
$headers .= "Content-Type: multipart/alternative;\n\tboundary=\"$mail_boundary\"\n";
$headers .= "X-Mailer: PHP " . phpversion();

// Messaage bodies: TXT and HTML
$text_msg = "messaggio in formato testo";
$html_msg = "<b>messaggio</b> in formato <p><a href='http://www.aruba.it'>html</a><br><img src=\"http://hosting.aruba.it/image_top/top_01.gif\" border=\"0\"></p>";

// Build up the message's body to be sent
$msg = "This is a multi-part message in MIME format.\n\n";
$msg .= "--$mail_boundary\n";
$msg .= "Content-Type: text/plain; charset=\"iso-8859-1\"\n";
$msg .= "Content-Transfer-Encoding: 8bit\n\n";
$msg .= "This is a testing e-mail sent by FORPSI Webhosting user for PHP mail()function testing purposes. FORPSI";  // text format message

$msg .= "\n--$mail_boundary\n";
$msg .= "Content-Type: text/html; charset=\"iso-8859-1\"\n";
$msg .= "Content-Transfer-Encoding: 8bit\n\n";
$msg .= "This is a testing e-mail sent by FORPSI Webhosting user for PHP mail()function testing purposes.

FORPSI";  // HTML format text

// Ending Boundary multipart/alternative
$msg .= "\n--$mail_boundary--\n";

// Return-Path setup (to be used only on windows servers)
ini_set("sendmail_from", $sender);

// Send the message, the fifth paramter set the Return-Path "-f$sender" on Linux Hosting
if (mail($to, $subject, $msg, $headers, "-f$sender")) { 
    echo "Mail sent successfully !<br><br>This is the source code used for sending the e-mail:<br><br>";
    highlight_file($_SERVER["SCRIPT_FILENAME"]);
    unlink($_SERVER["SCRIPT_FILENAME"]);
} else { 
    echo "<br><br>Mail delivery failed!";
}

?>
票数 1
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/7904006

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档