mail.php

来自「Flash form mail 包含源碼」· PHP 代码 · 共 35 行

PHP
35
字号
<?php

$name  		= $_POST['name'];
$email 		= $_POST['email'];
$message	= $_POST['message'];

$ip		    = $_SERVER['REMOTE_ADDR'];


// Set the email adress to recieve mails from this script
$to			= 'youremail@yoursite.yourdomain';
// Set the subject of mails sent by this script
$subject	= 'Form Mail submission!';

$content	= 
'
<p>A new form has been submitted in your website with this following information</p>

<p>
<b>Name: </b>'.$name.'<br>
<b>Email: </b>'.$email.'<br>
<b>IP: </b>'.$ip.'<br>
<b>Message: </b><br>'.$message.'
</p>
';

if(mail($to,$subject,$content))
	{
		echo 'status="Message Posted!"';
	}
else
	{
		echo 'status="Failed to post!"';
	}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?