如果没有我的域名电子邮件,我如何使用PHP发送电子邮件?我尝试过使用Google Business Apps电子邮件,但它无法正常使用。
答案 0 :(得分:0)
尝试PHPMailer并使用它通过您有权访问的某个SMTP服务器发送邮件。它比普通的mail()
功能更加通用,它可以访问其他邮件服务器,因此您不必从您的域发送。
答案 1 :(得分:0)
如果有的话,你可以用smtp服务器发送电子邮件,试试PHP的经典电子邮件发送库: https://github.com/PHPMailer/PHPMailer
或者您可以从您的主机发送邮件,例如代码:
<?php
$elm1 = 'hello this is elm 1';
$elm2 = 'you can add more elmts';
$message .= "text 1 : ".$elm1."\n";
$message .= "text 2 : ".$elm2."\n";
$send = "your_email@service.tld"; // edit this email to getting message
$subject = "Your Subject here"; // subject what you want
$headers = "From:CaptainDuude<email@local.com>"; // sender email, what you want ;)
mail($send,$subject,$message,$headers);
?>