Jump to content
Fórum Script Brasil
  • 0

função mail (erro)


Marcos Geam

Question

galera alguém pode me dizer onde esta o erro na função abaixo que não envia o email nem a pau!!!

<?php

//Conexão manual (necessária)

require_once('Connections/conn.php');

?>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />

<title>Documento sem título</title>

</head>

<body>

<form name="boletim" action="" method="post" enctype="multipart/form-data">

<label>

<span>e-mail</span>

<input type="text" name="email" />

</label>

<input type="hidden" name="news_cadastro" value="cadastra" />

<input type="submit" name="cadastrar" value="cadastrar" />

</form>

<?php

$email = $_POST['email'];

$codigo = md5($email);

// O remetente deve ser um e-mail do seu domínio conforme determina a RFC 822.

// O return-path deve ser ser o mesmo e-mail do remetente.

$headers = "MIME-Version: 1.1\r\n";

$headers .= "Content-type: text/plain; charset=iso-8859-1\r\n";

$headers .= "From: meuemail@hotmail.com\r\n"; // remetente

$headers .= "Return-Path: meuemail@hotmail.com\r\n"; // return-path

$envio = mail($email, "Teste mail", "Olá tudo bem!?", $headers);

if($envio)

echo "Mensagem enviada com sucesso";

else

echo "A mensagem não pode ser enviada";?>

</body>

</html>

Link to comment
Share on other sites

0 answers to this question

Recommended Posts

There have been no answers to this question yet

Join the conversation

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

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  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.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...