加入测心网,获得更多

如果您有心理学背景,欢迎加入测心网,服务网友,获得打赏。如有意愿,请联系微信/QQ:57762787

wordpress由用户驱动发送邮件

使用场景举例:用户注册、发送测试结果等

模板singe中添加代码:

<?php
if (isset($_POST['useremail'])){
$to = $_POST['useremail'];
$subject = $_POST['usertitle'];
$body = $_POST['userresult'];
$headers = array('Content-Type: text/html; charset=UTF-8');
wp_mail( $to, $subject, $body, $headers );
}
?>

文章内添加代码:

<form action="" method="post" name="mymail">
请输入常用邮箱:<br />
<input name="useremail" type="text" value=""/>
<input name="usertitle" type="text" value=""/>
<input name="userresult" type="text" value=""/>
<input type="submit" value="发送邮件"/>
</form>

评论

5+8=

如有帮助,欢迎打赏!

微信扫一扫打赏