• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

通过html表格发电子邮件_php基础

php 搞代码 3年前 (2022-01-26) 10次浏览 已收录 0个评论

如下:
<?

/******************************************************************************
Description: This is a simple script to send emails via a html-form
to different users
Date : 1999-02-25
Author : amalesh kempf

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=”[email protected]”;

if (!$btnSendEmail)
{
?>

The email will be added automatically with “Hello Name” in the first line of
the emailbody!

<form action="send_email.php3" enctype="application/x-www-form-
urlencoded” method=”post”>

*本文来@源gao@daima#com搞(%代@#码@网2

搞代gaodaima码

Subject
Body <textarea cols="40" name="strBody" rows="8"
wrap=”PHYSICAL”><? echo $strBody ?>
Category

<?php // add you categories here: ?>
Party

<input name="btnSendEmail" style="HEIGHT: 24px; WIDTH: 224px"
type=”submit” value=”Sende email”>

<?php
}

if (isset($btnSendEmail))
{ echo “Send Email
“;

// 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
“;

// 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
“;
}
}
?>


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:通过html表格发电子邮件_php基础

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址