mail_send.php 一时失言乱红尘 2022-08-21 08:55 135阅读 0赞 <?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; } ?>
还没有评论,来说两句吧...