Peredelski
Lord XPZ
[glow=blue,2,300]~ Sobre ~ [/glow]
Aprenderemos Aqui A Enviar A Sua Página De Contato Usando Um Formulário Simples Em HTML e Sistema De Envio Em PHP
[glow=red,2,300]~ Conceitos ~ [/glow]
Saber O Básico Em HTML e PHP
[glow=yellow,2,300]~ Créditos ~ [/glow]
Diego Peredelski - Criação Do Código E Formulário
[glow=blue,2,300]~ Tutorial ~ [/glow]
Criando O Formulário:
<html>
<head>
<title>Formulario de E-mail</title>
</head>
<body>
<table width="80%" align="center">
<form action="envia.php" method="post" name="formulario" id="formulario">
<tr>
<td width="20%">Seu Email</td>
<td><input type="text" name="email" size="50" maxlength="255"></td>
</tr>
<tr>
<td width="20%">Assunto</td>
<td><input type="text" name="titulo" size="50" maxlength="255"></td>
</tr>
<tr>
<td colspan=2>Sua Mensagem<br>
<textarea cols="53" rows="5" name="texto"></textarea>
</td>
</tr>
<tr>
<td colspan=2 align="center"><input type="submit" value="Enviar Email"></td>
</tr>
</form>
</table>
</body>
</html>
OBS 1: Salve O Arquivo Como Formulario.HTM
OBS 2: Vale Lembrar Que Os "names" Dos Campos Do Formulario Devem Ser Os Mesmos Que Vamos Usar Na Página envia.php.
Página envia.php
<?
$destino = "seu_email@seu_dominio.com.br";
$rementente = $email;
$assunto = $titulo;
$mensagem= $texto;
$headers = "Content-Type: text/html; charset=iso-8859-1";
$headers.="From:".$rementente."";
mail("$destino", "$assunto", "$mensagem","$headers");
?>
<html>
<body>
<center>
Obrigado !!!
<br>
Seu Contato Foi Efetuado Com Susseso, Assim Que Possivel Responderei.
</center>
</body>
</html>
OBS: Salve Esse Código Como envia.php E Deixe Na Mesma Pasta Do Formulário.
OBS 2: VALE LEMBRAR QUE SÓ FUNCIONA SE SEU SERVIDOR SMTP ESTIVER ATIVO.
[glow=blue,2,300]~ Considerações Finais ~ [/glow]
Vale Lembrar Que Esse é Um Código Básico, Portanto Implementem Do Jeito Que Quiserem Mas Sem Modificar As Váriaveis E Funcões.
Aprenderemos Aqui A Enviar A Sua Página De Contato Usando Um Formulário Simples Em HTML e Sistema De Envio Em PHP
[glow=red,2,300]~ Conceitos ~ [/glow]
Saber O Básico Em HTML e PHP
[glow=yellow,2,300]~ Créditos ~ [/glow]
Diego Peredelski - Criação Do Código E Formulário
[glow=blue,2,300]~ Tutorial ~ [/glow]
Criando O Formulário:
<html>
<head>
<title>Formulario de E-mail</title>
</head>
<body>
<table width="80%" align="center">
<form action="envia.php" method="post" name="formulario" id="formulario">
<tr>
<td width="20%">Seu Email</td>
<td><input type="text" name="email" size="50" maxlength="255"></td>
</tr>
<tr>
<td width="20%">Assunto</td>
<td><input type="text" name="titulo" size="50" maxlength="255"></td>
</tr>
<tr>
<td colspan=2>Sua Mensagem<br>
<textarea cols="53" rows="5" name="texto"></textarea>
</td>
</tr>
<tr>
<td colspan=2 align="center"><input type="submit" value="Enviar Email"></td>
</tr>
</form>
</table>
</body>
</html>
OBS 1: Salve O Arquivo Como Formulario.HTM
OBS 2: Vale Lembrar Que Os "names" Dos Campos Do Formulario Devem Ser Os Mesmos Que Vamos Usar Na Página envia.php.
Página envia.php
<?
$destino = "seu_email@seu_dominio.com.br";
$rementente = $email;
$assunto = $titulo;
$mensagem= $texto;
$headers = "Content-Type: text/html; charset=iso-8859-1";
$headers.="From:".$rementente."";
mail("$destino", "$assunto", "$mensagem","$headers");
?>
<html>
<body>
<center>
Obrigado !!!
<br>
Seu Contato Foi Efetuado Com Susseso, Assim Que Possivel Responderei.
</center>
</body>
</html>
OBS: Salve Esse Código Como envia.php E Deixe Na Mesma Pasta Do Formulário.
OBS 2: VALE LEMBRAR QUE SÓ FUNCIONA SE SEU SERVIDOR SMTP ESTIVER ATIVO.
[glow=blue,2,300]~ Considerações Finais ~ [/glow]
Vale Lembrar Que Esse é Um Código Básico, Portanto Implementem Do Jeito Que Quiserem Mas Sem Modificar As Váriaveis E Funcões.