Scripts prontos em php Formulário de contato em php
Copie e cole o script em uma página e salve como arquivo com extensão php.
<?php
if(isset($_POST["enviar"]))
{
$Titulo = "E-mail enviado pelo site";
$nomerecebido = $_POST["nome"];
$emailrecebido = $_POST["email"];
$msg = $_POST["mensagem"];
$mensagem1 = "Informações do Contato\n\nNome: ".$nomerecebido."\nE-mail: ".$emailrecebido."\nMensagem: ".$msg."\n";
//digite abaixo seu email
$meuemail="meuemail@meusite.com.br";
$Destinatario="$meuemail";
mail("$Destinatario","$Titulo","$mensagem1","From:$emailrecebido");
echo "Mensagem enviada";
}
?>
<!DOCTYPE HTML>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<title>Formulário FormMail</title>
</head>
<body>
<form method="post" action=""/>
<table width="28%" border="1">
<tr>
<td height="19" width="25%">Nome: </td>
<td height="19" width="75%"><input type="text" name="nome" size="40" value="Seu nome"></td>
</tr>
<tr>
<td height="19" width="25%">E-mail: </td>
<td height="19" width="75%"><input type="text" name="email" size="40" value="E-mail do visitante"></td>
</tr>
<tr>
<td height="19" width="25%">Mensagem: </td>
<td height="19" width="75%"><textarea name="mensagem" ></textarea></td>
</tr>
<tr>
<td height="19" width="25%"> </td>
<td height="19" width="75%">
<input type="submit" name="enviar" value="enviar">
</td>
</tr>
</table>
</form>
</body>
</html>