0

このコードを機能させることができません。PHP のメール部分の使い方を知っていますが、何が問題なのか理解できません。

##Send activation Email

$to      =  $_POST['email'];

$subject = " YOURWEBSITE.com Registration";

$message = "Welcome to our website!\r\rYou, or someone using your email address, has completed registration at YOURWEBSITE.com. You can complete registration by clicking the following link:\rhttp://www.YOURWEBSITE.com/verify.php?$activationKey\r\rIf this is an error, ignore this email and you will be removed from our mailing list.\r\rRegards,\ YOURWEBSITE.com Team";

$headers = 'From: noreply@close2.me';


mail($to, $subject, $message, $headers);
4

1 に答える 1

0

以下のチュートリアルを見てください

http://email.about.com/od/emailprogrammingtips/qt/PHP_Email_SMTP_Authentication.htm

http://roshanbh.com.np/2007/12/sending-e-mail-from-localhost-in-php-in-windows-environment.html

http://php.net/manual/en/function.mail.php

smtp 認証を使用してメールを送信することは解決策の 1 つです。または、swift mailer のようなメール ライブラリを使用することもできます。

于 2012-10-16T04:56:17.297 に答える