在我的网站上有一些邮件选项。我发送一封HTML邮件。 所以我需要检查我的客户端服务器是否支持邮件功能。 我怎么检查这个? 如果有任何PHP代码?
答案 0 :(得分:1)
您只能检查邮件是否已发送:
$message = "Line 1\nLine 2\nLine 3";
// Send
if(mail('YOUR_EMAIL_HERE@example.com', 'My Subject', $message)) {
echo "Sent";
}
else {
echo "Not Sent";
}
答案 1 :(得分:1)
所以you want to check mail() is supporting into client's server?
if(function_exists('mail'))
{
}
但是,我确定不推荐这种方法,最好的检查方法是向自己发送一条空信息:
<?php
if(mail($to,$subject,$message) != false)
{
echo 'You can send email';
}
?>
答案 2 :(得分:0)
尝试以下代码。
if(mail('TEST_ACCOUNT@gmail.com','test','content') != false)
{
echo 'You can send email from this server';
}else{
print_r(error_get_last());
}