阅读量:0
以下是一个使用PHP发送电子邮件的基本代码示例:
<?php $to = "recipient@example.com"; $subject = "Hello"; $message = "This is a test email."; $headers = "From: sender@example.com"; if (mail($to, $subject, $message, $headers)) { echo "Email sent successfully."; } else { echo "Email sending failed."; } ?>
在上述代码中,你需要提供收件人的电子邮件地址($to),邮件主题($subject),邮件内容($message)和发件人的电子邮件地址($headers中的From字段)。然后,使用PHP的mail()函数发送电子邮件。
请注意,使用mail()函数发送电子邮件需要在PHP配置文件(php.ini)中正确配置SMTP服务器。另外,一些托管提供商可能会限制使用mail()函数发送电子邮件,因此你可能需要考虑使用其他第三方库或服务来发送电子邮件。