Help with PHP mail html script

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
FabWebDesigns
Forum Newbie
Posts: 1
Joined: Fri Oct 31, 2008 9:08 am

Help with PHP mail html script

Post by FabWebDesigns »

I have an online form that gets filled out and need to use
PHP mail html to process it. How do I get the $_POST['Name.Borrower' item to go into the table. Here's
my sample code:

Code: Select all

 
<?php
et these paramaters-
-------------------------
 
// Subject of email sent to you.
$subject = 'Results from Application Intake'; 
 
// Your email address. This is where the form information 
will be sent. 
$to = 'whomever@yahoo.com';
 
$url = 'http://www.fabwebdesigns.com’; 
 
 
//Process the $Post variables
 
$CopyWasSentTo = $_POST['CopyWasSentTo'];
$CopyWasAlsoSentTo = $_POST['CopyWasAlsoSentTo'];
 
 
//Process the post variables:
$fNameB = $_POST['Name.Borrower'];
$fBDOB = $_POST['DOB'];
 
 
//THE VAR NAME ABOVE SHOW’S UP AS ITSELF IN THE 
TABLE BELOW WENT THE EMAIL IS DELIVERED (I.E IN THE 
EMAIL IT WILL SAY “$fNameB” AND “Bob Smith” THE 
VALUE PASSED TO IT BY $_POST['NAME.BORROWER']. SAME 
THING FOR $FBDOB
 
// message
$message = '
<html>
<head>
<title>Results from Application Intake</title>
</head>
<body>
 
 
Results from Application Intake</p>
<table width="642" border="1" cellpadding="1" 
cellspacing="1" bordercolor="#000000">
<tr>
<td width="210">Borrowers Name:</td>
<td width="419">$fNameB </td>
</tr>
<tr>
<td width="210">Borrowers DOB:</td>
<td width="419”> $fBDOB </td>
</tr>
</table>
</body>
</html>
';
 
// To send HTML mail, the Content-type header must be 
set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-
8859-1' . "\r\n";
$headers .= "From: Application 
Intake<info@fabwebdesigns.com>\r\n";
$headers .= "Cc: ".$CopyWasSentTo."\r\n";
$headers .= "Cc: ".$CopyWasAlsoSentTo."\r\n";
 
 
 
$mailSent = mail($to, $subject, $message, $headers);
 
echo '<META HTTP-EQUIV=Refresh CONTENT
 
Post Reply