<?php
// 接收值
$toman=$_POST['toman'];
$titles=$_POST['title'];
$contents=$_POST['content'];
$fromman=$_POST['fromman'];
//引入类
require 'Mail.class.php';
if( Mail::send($titles,$contents,$fromman,$toman)){
echo "发送成功";
}else{
echo "发送失败".'<br>';
echo Mail::$error;
}
?>
mail_send.php
最新推荐文章于 2021-08-07 10:10:58 发布
本文介绍了一种使用PHP实现邮件发送的方法。通过接收表单提交的数据包括收件人、标题、内容及发件人信息,并利用自定义的Mail类进行邮件的发送操作。文章提供了完整的代码示例,演示了如何成功或失败时返回相应的提示。
摘要由CSDN通过智能技术生成