日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 >

html表格通过邮件发送,通过html表格发电子邮件

發布時間:2024/9/27 39 豆豆
生活随笔 收集整理的這篇文章主要介紹了 html表格通过邮件发送,通过html表格发电子邮件 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

[email?protected]>

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!

Subject
Body

wrap="PHYSICAL"> echo $strBody ?>

Category

Party

type="submit" value="Sende email">

}

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
";

}

}

?>

原文:http://www.jb51.net/article/1910.htm

總結

以上是生活随笔為你收集整理的html表格通过邮件发送,通过html表格发电子邮件的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。