我在drupal网站上工作。我使用php邮件功能向该网站添加邮件功能,我使用mozilla thunderberd查找电子邮件发送工作正常。有时邮件工作正常。但有时它不工作所有这些都没有改变代码。下面是我用来发送电子邮件的代码。
$success = mail('lakshman@codegen.net','hi',$message);
if($success){
print "email send successfully";
}else{
print "email sending failed";
}
我使用ajax reqest使用mootool激发此邮件功能。这是代码
$('emailButton').addEvent('click', function(event) {
alert("hi I am here");
event.stop();
var hello = 'hello world.......!';
var req = new Request({
method: 'post',
url: 'mail.php',
data: { 'hello' : hello },
onRequest: function() { alert('The request has been made, please wait until it has finished.'); },
onComplete: function(response) { alert('The response is the following : ' + response); }
}).send();
});
是否有任何理由不能正常工作并使用相同的代码?
答案 0 :(得分:2)
您可以在mail()
中添加标题..就像这样
$headers = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: $sFrom <ADMIN MAIL ID>\r\n";
$headers .= "To: $to\r\n";
标题未包含在您的邮件功能中,可能是因为它有时会发出警告或错误...
答案 1 :(得分:1)
您应该使用drupal_mail功能,因为它会为您处理标题。
P.S。 :另外,最好使用Drupal's built-in jQuery behaviors。