Jump to content

PHP mail()


damdempsel

Recommended Posts

I created a code that send an E-Mail to the admin of the site so that they can accept the persons registration. I have all of the code working accept the mail part. Here is the code I use:

                    $to = "email";
                    $message = "Username: $username <br>MD5 Password: $password <br>E-Mail: $email <br>Invited by: $invited";
                    $subject = "$username would like to join the clan.";
                    $from = $email;
                    $headers = "From: $from";
  		    mail($to,$subject,$message,$headers); 

Does anyone see something that I should change? Also for the mail() parameters, do they need to be in quotes or are they fine like they are?

Thanks.

Link to comment
https://forums.phpfreaks.com/topic/184846-php-mail/
Share on other sites

What is the error you are getting? It won't send an email to "email", has to be a real address. Im guessing you just edited that.

 

Here is a good header:

$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$headers .= "From: $from" . "\r\n" .
	"Reply-To: $from" . "\r\n" .
	'X-Mailer: PHP/' . phpversion();

Link to comment
https://forums.phpfreaks.com/topic/184846-php-mail/#findComment-975769
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.