建站极客
网络编程 PHP编程 正文
通过html表格发电子邮件
所属分类:
网络编程 / PHP编程
阅读数:
1877
收藏 0
赞 0
分享
如下: <? /****************************************************************************** Description: This is a simple script to send emails via a html-form to different users Date : 1999-02-25 Author : amalesh kempf <amalesh@goatrance.de> Create this table The field "what" is for different categories CREATE TABLE email_notify ( ID int(11) DEFAULT '0' NOT NULL, What varchar(60) DEFAULT '0' NOT NULL, Name varchar(60) DEFAULT '0' NOT NULL, Email varchar(60) DEFAULT '0' NOT NULL, timestamp varchar(16), KEY (What), PRIMARY KEY (ID)); To fill this table you might create an insert form *******************************************************************************/ // Set this values: $strHost ="localhost"; $strUser ="root"; $strPassw =""; $strSender="you@domain.com"; if (!$btnSendEmail) { ?> The email will be added automatically with "Hello Name" in the first line of the emailbody!<br> <br> <form action="send_email.php3" enctype="application/x-www-form- urlencoded" method="post"> <table> <tr> <td>Subject</td> <td><input name="strSubject" size="40"></td> </tr> <tr> <td>Body</td> <td><textarea cols="40" name="strBody" rows="8" wrap="PHYSICAL"><? echo $strBody ?></textarea></td> </tr> <tr> <td>Category</td> <td> <select name="strWhat"> <?php // add you categories here: ?> <option value="party">Party</option> </select> </td> </tr> </table> <input name="btnSendEmail" style="HEIGHT: 24px; WIDTH: 224px" type="submit" value="Sende email"> </form> <?php } if (isset($btnSendEmail)) { echo "Send Email<br>"; // Create connection $intConID = mysql_pconnect($strHost,$strUser,$strPassw); // Header $strHeader = "Return-Path: $strSender\nErrors-To: $strSender\nFrom: $strSender"; // SQL $strSQL = "select name,email from email_notify where lcase(what) = '$strWhat'"; $intRes = mysql_query($strSQL,$intConID); echo "Send Email $strBody<br>"; // fetch array while($saRow = mysql_fetch_array($intRes)) { $strEmail = $saRow["email"]; $strName = $saRow["name"]; $strBodyComplete = "Hello " . $strName[$i] . "!\n\n" . $strBody; // Email mail($strEmail,$strSubject,$strBodyComplete,$strHeader); // Output echo "Send to $strName<br>"; } } ?>
php文件管理基本功能简单操作 这篇文章主要为大家详细介绍了php文件管理基本功能简单操作的相关资料,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
评论 0
收藏 0
赞 0
分享
php常用数组函数实例小结 这篇文章主要介绍了php常用数组函数,结合实例形式总结分析了php常用数组函数array_merge、array_slice及array_map的功能与使用技巧,需要的朋友可以参考下
评论 0
收藏 0
赞 0
分享
php常用正则函数实例小结 这篇文章主要介绍了php常用正则函数,结合实例形式总结分析了php正则表达式常用函数,包括preg_replace、preg_match及preg_match_all函数的功能、使用方法与相关注意事项,需要的朋友可以参考下
评论 0
收藏 0
赞 0
分享
php常用字符函数实例小结 这篇文章主要介绍了php常用字符函数,结合实例形式总结分析了php常用字符函数substr、preg_match、strpos、dirname及str_split功能、用法与相关注意事项,需要的朋友可以参考下
评论 0
收藏 0
赞 0
分享
微信公众号模板消息群发php代码示例 这篇文章主要为大家详细介绍了微信公众号模板消息群发php代码示例,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
评论 0
收藏 0
赞 0
分享
查看更多