首页 >

织梦DedeCMS 自定义表单提交后自动发送表单数据到指定邮箱的思路

背景:

织梦DedeCMS 自定义表单提交后自动发送表单数据到指定邮箱的思路

前几天客户让在织梦DedeCMS网站里面增加一个报名的系统,于是就想到了自定义表单,但是后面客户提出要求说假如学院报名后能把报名信息发送到他的qq邮箱,这样,他就不用登陆后台查看织梦DedeCMS的自定义表单了。觉得也不错,比较实用,先前考虑的是dede的会员邮件系统来实现,最后发现没有这个phpmailer省事。于是利用phpmailer 的class.phpmailer.类实现发送。

修改:/plus/diy.php 修改了自定义表单模板的童鞋记得修改下templets/plus/post_diyform.htm 这模板。 很灵活

实现代码:

<?php

include_once(‘../class.phpmailer.php’);

$mail = new PHPMailer(); // defaults tousing php “mail()”

$mail->IsSMTP(); // telling the class touse SMTP

$mail->Host = “smtp.mytianshui.com”; //SMTP server

$mail -> Post = “25”;

$mail->From = “clj@mytianshui.com”;

$mail ->password = “*******”;

$mail->FromName = “chen liangji”;

$mail->Subject = “Email title “;

$mail ->body =”this is body content ” ; //也可以把自定义表单里面获得的字段输出

$mail->AltBody = “To view the message, please use anHTML compatible email viewer!”; // est

$mail->AddAddress(“ouranimation0000@qq.com”,”张晨文”);

if(!$mail->Send()) {

echo “Mailer Error: ” . $mail->ErrorInfo;

} else {

echo “Message sent!”;

}

?>

这样,当action =post的时候把自定义表单数据提交到了数据库,并且也会发送到ourani 0000@qq.com 这个指定的邮箱。

任务完成。


织梦DedeCMS 自定义表单提交后自动发送表单数据到指定邮箱的思路
  • 织梦DedeCMS 时间格式大全
  • 织梦DedeCMS 时间格式大全 | 织梦DedeCMS 时间格式大全 ...

    织梦DedeCMS 自定义表单提交后自动发送表单数据到指定邮箱的思路
  • 织梦DedeCMS只在列表第一页显示织梦DedeCMSfield.content
  • 织梦DedeCMS只在列表第一页显示织梦DedeCMSfield.content | 织梦DedeCMS只在列表第一页显示织梦DedeCMSfield.content ...

    织梦DedeCMS 自定义表单提交后自动发送表单数据到指定邮箱的思路
  • 织梦DedeCMS v5.5首页栏目添加广告的方法
  • 织梦DedeCMS v5.5首页栏目添加广告的方法 | 织梦DedeCMS v5.5首页栏目添加广告的方法 ...