用php编写一个网页表单并发送到指定邮箱 如何写代码?
1个回答
2012-05-23 · 知道合伙人软件行家
关注
展开全部
发送邮件,可以使用mail函数,以下是mail的示例,你可以再仿照网上的邮箱编写个发送界面表单:
<?php
$to = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
<?php
$to = 'nobody@example.com';
$subject = 'the subject';
$message = 'hello';
$headers = 'From: webmaster@example.com' . "\r\n" .
'Reply-To: webmaster@example.com' . "\r\n" .
'X-Mailer: PHP/' . phpversion();
mail($to, $subject, $message, $headers);
?>
追问
能不能写全面一些。。。 好久没用了 开始学了个基础 现在忘得差不多了 。。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询