e-cards

jonathonbaker

New Member
Messages
5
Reaction score
0
Points
0
I have a code i am happy with to use as an email form, and I want to adapt it for an e-card system, the user selects from four images , submits their name and email address, and the recipients name and email address and can write a message, I am wondering how I may go about this, I know the imagse will be in a database selected by radio buttons and shown as a foreach loop (I think) My mail concern is not the form part, but how to get this into the email. Here is my code, serious karma points for anyone who can help!

<html>
<body>

<?php
if (isset($_REQUEST['email']))
//if "email" is filled out, send email
{
//send email
$email = $_REQUEST['email'] ;
$subject = $_REQUEST['subject'] ;
$message = $_REQUEST['message'];
mail( "culturaldissection@hotmail.com", "Subject: $subject",
$message, "From: $email" );
echo "Thank you for using our mail form";
}
else
//if "email" is not filled out, display the form
{
echo "<form method='post' action='mailform.php'>
Email: <input name='email' type='text' /><br />
Subject: <input name='subject' type='text' /><br />
Message:<br />
<textarea name='message' rows='15' cols='40'>
</textarea><br />
<input type='submit' />
</form>";
}
?>

</body>
</html>
 
Top