以下是一個使用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()函數發送電子郵件,因此你可能需要考慮使用其他第三方庫或服務來發送電子郵件。