-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmail.php
31 lines (24 loc) · 774 Bytes
/
mail.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<?php
$to = '[email protected]';
$firstname = $_POST["fname"];
$email= $_POST["email"];
$text= $_POST["message"];
$phone= $_POST["phone"];
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= "From: " . $email . "\r\n"; // Sender's E-mail
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$message ='<table style="width:100%">
<tr>
<td>'.$firstname.' '.$laststname.'</td>
</tr>
<tr><td>Email: '.$email.'</td></tr>
<tr><td>phone: '.$phone.'</td></tr>
<tr><td>Text: '.$text.'</td></tr>
</table>';
if (@mail($to, $email, $message, $headers))
{
echo 'The message has been sent.';
}else{
echo 'failed';
}
?>