Consiste in un form per la spedizione di e-mail da web senza bisogno di altri servizi.
File config.php
<?
$email = "inserisci la tua mail";
$subject = "soggetto";
?>
form.php
<p>Contattami.</p>
<form action="sendmail.php" method=POST>
<table width=100%>
<tr>
<td align=right>Your Name:</td>
<td align=left><input type=text name=f_name size=30></td>
</tr>
<tr>
<td
align=right>Your E-mail</td>
<td align=left><input type=text name=f_mail size=30></td>
</tr>
<tr>
<td align=right>Message</td>
<td align=left><textarea cols=40 rows=5 name=f_message></textarea></td>
</tr>
</table>
<input type=submit value="Send Mail">
</form>
sendmail.php
<?
include "config.php";
if ($f_name <> "" and $f_mail <> "" and $f_message <> "")
{
mail("$email", "$subject", "From: $f_name\nMail: $f_mail\nMessage:\n\n$f_message");
$msg = "Messaggio inviato .";
} else {
$msg = "Occorre compilare tutti i campi.";
}
?>
<p><? echo $msg; ?></p>
![]()
![]()