为了账号安全,请及时绑定邮箱和手机立即绑定

php表单提交至mysql怎么同时发送至指定邮箱

php表单提交至mysql怎么同时发送至指定邮箱

慕桂英546537 2019-03-13 14:22:47
现在通过html提交表单,可以实现把数据插入到mysql中,php代码如下  <?php     session_start();     $username=$_REQUEST["username"];     $phone=$_REQUEST["phone"];     $datetime=$_REQUEST["datetime"];     $con=mysql_connect("localhost","root","root");     if (!$con) {       die('数据库连接失败'.$mysql_error());     }     mysql_select_db("user_info",$con);     $dbusername=null;     $dbphone=null;     $result=mysql_query("select * from user_info where phone ='{$phone}' and isdelete =0;");     while ($row=mysql_fetch_array($result)) {       $dbusername=$row["username"];       $dbphone=$row["phone"];     }     if(!is_null($dbphone)){   ?>   <script type="text/javascript">     alert("手机号已存在");     window.location.href="index.html";   </script>    <?php      }         mysql_query("insert into user_info (username,phone,datetime) values('{$username}','{$phone}',now())") or die("存入数据库失败".mysql_error()) ;     mysql_close($con);   ?>   <script type="text/javascript">     alert("注册成功");     window.location.href="index.html";   </script> 如何在这个基础上同时把插入数据库的内容发送至指定邮箱呢?有没有案例参考?
查看完整描述

6 回答

?
料青山看我应如是

TA贡献1772条经验 获得超8个赞

composer 引入phpmailer/phpmailer 依赖phpmailer/phpmailer


查看完整回答
反对 回复 2019-03-29
?
蛊毒传说

TA贡献1895条经验 获得超3个赞

我就是这么做的,但是发送很慢,导致提交表单要等很久。


查看完整回答
反对 回复 2019-03-29
?
12345678_0001

TA贡献1802条经验 获得超5个赞

发送邮件放入异步队列处理


查看完整回答
反对 回复 2019-03-29
?
米脂

TA贡献1836条经验 获得超3个赞

headfirst php&mysql有同样项目


查看完整回答
反对 回复 2019-03-29
?
三国纷争

TA贡献1804条经验 获得超7个赞

我觉得直接用大厂的邮件发送api比较方便点


查看完整回答
反对 回复 2019-03-29
  • 6 回答
  • 0 关注
  • 919 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信