Jump to content

Recommended Posts

Hello, I am very new to php and am attempting to build a form that will result in an email. This email would be a business greeting email including an employee name and picture. I am able to output the name but have no clue on how to separate the image html when employee 1 or 2 is selected. Any help would be greatly appreciated.

 

Here is what I have.

 

Form.php

<FORM ACTION="mail.php" method=post>

<table>
Greeting Email
<tr>
<td>Email Address:</td>
<td align="center"><input type="text" name="address" size="30" maxlength="30"></td>
</tr>
<tr>
<td>Email Address:</td>
<td align="center"><input type="text" name="address" size="30" maxlength="30"></td>
</tr>
<tr>
<td>Employee</td>
<td align="center"><SELECT NAME="name" SIZE="2" maxlength="2">
<OPTION SELECTED>Joe
<OPTION>Mike
</SELECT></td>
</tr>
<tr>
<td colspan="2" align="center"><br>
<input type="submit" value="Send Email"></td>
</tr>
</table>
</form>

</body>
</html>

 

Mail.php

<?php
$to = "$_POST[address]";
$subject = "subject";

$message = "
<html>
<head>
<title>title</title>
</head>
<body>
This email is to confirm your appointment with $_POST[name].
</body>
</html>
";

$headers = "MIME-Version: 1.0" . "\r\n";
$headers .= "Content-type:text/html;charset=iso-8859-1" . "\r\n";
$headers .= 'From: Test@test.com' . "\r\n";
mail($to,$subject,$message,$headers);
?>

Link to comment
https://forums.phpfreaks.com/topic/149069-need-help-with-php-html-form/
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.