首页 > 后端开发 > php教程 > php 在投递简历时向邮箱自动发送一份当前简历

php 在投递简历时向邮箱自动发送一份当前简历

WBOY
发布: 2016-06-23 13:43:21
原创
1229 人浏览过

邮箱地址从数据库取,在一个招聘详细页面点有显示,当在该详细页面点击应聘时,怎么将邮箱地址动态传过来并在sendMail.php页面里面获取传过来的邮箱地址



谢谢


回复讨论(解决方案)

招聘详细页面里面:
连接+隐藏iframe

<iframe name="back_interface" id="back_interface"              style="display:block;width:100%;height:300px;"></iframe><a href="../php_test/sendmail.php?EnterpriseMailbox=327496144@qq.com"              target="back_interface" >应聘</a>
登录后复制

或者也可以用ajax传递,以jquery为例
<!doctype html><html>  <head>    <meta charset="UTF-8"/>    <title>Document</title>    <script src="http://static.blog.csdn.net/scripts/jquery.js" type="text/javascript"></script>    <script>  $(function(){    $("#send").click(function(){      var mailbox=$("#EnterpriseMailbox").html()      $.get("../php_test/sendmail.php", { EnterpriseMailbox:  mailbox } ,function(data){        alert("简历已发");      });    });  });</script>  </head>  <body>企业邮局:<div id="EnterpriseMailbox">327496144@qq.com</div><input id="send" type="button" value="应聘"  />  </body></html>
登录后复制





sendmail.php
中对应的改为
$address=$_GET['EnterpriseMailbox'];

招聘页面
应聘

招聘详细页面
$address = isset($_GET['address'])? $_GET['address'] : '';
?>

来源:php.cn
本站声明
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板