sendmessageone.php

来自「通达OA部分源代码」· PHP 代码 · 共 16 行

PHP
16
字号
<?
			 $from =$_REQUEST["from"];
			 $to = $_REQUEST["email"];
			 $subject = $_REQUEST["subject"];
			 $body = $_REQUEST["message"];
		     $header="From:" . $from . "\r\n" ."Reply-To:". $from  ;
			if(isset($_REQUEST["html"])&&($_REQUEST["html"]=="yes"))
			{
			$header .= "\r\nMIME-Version: 1.0";
			$header .= "\r\nContent-type: text/html; charset=iso-8859-1\r\n";
			}
			 mail($to,$subject,$body,$header);

header("Location: ". $_REQUEST["return_str"]."?msg=" . urlencode("Your Message has been sent!") );
die();
?>

⌨️ 快捷键说明

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