Php > E-Mail sample source codes
Simple script to send emails via a html-form to different users
Simple script to send emails via a html-form to different users /* 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!
Subject
Body
echo $strBody ?>
Category
Party
"; // 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
"; } } ?>
Php Codes
Algorithms
Arrays
Authentication
Calendar
Code Snippets
Programs
Content Manage
Contest Related
Cookies
Credit Cards
DBase Related
Databases
Date Time
Directories
E-Mail
Errors
File
File System
Forms
Handling
Graphics
HTML and PHP
Informix
Ingres
InterBase
LDAP
Look and Feel
Miscellaneous
MySQL
Other
PHP Classes
Searching
Navigation
Statistics
Strings
User Manage