Jump to content
Fórum Script Brasil
  • 0

Mandar E-mail Usando Html


Guest Jorge

Question

Ola a todos,

Estou tentando fazer um form que manda email HTML, fiz o seguinte script porem só a cor q esta mudando, o tipo da fonte não esta dando certo, o que pode ser?


// os dados vem de um form.

$headers  = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: $meuemail";
mail($para,$assunto,$mensagem,$headers);

Link to comment
Share on other sites

13 answers to this question

Recommended Posts

  • 0

O Codigo é este.


<HTML>
<HEAD>
 <TITLE>Enviar Newsletter</TITLE>
</HEAD>
<BODY>

<?
include ('config.php');
if (isset($enviar)){

if ($senha_digitada==$senha_arquivo){
$selecionar= mysql_query("SELECT * FROM mail where receber='Sim'");
$assunto = $HTTP_POST_VARS["assunto"];
$msg=nl2br($HTTP_POST_VARS["mensagem"]);
$mensagem= $msg;
echo "<table border='1'>";
########################################
$contagem="0";
while ($cada = mysql_fetch_array($selecionar)){
$para = "$cada[mail]";
$headers  = "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
$headers .= "From: $meuemail";
mail($para,$assunto,$mensagem,$headers);
$contagem++;
echo "<tr>
      <td>$para</td>
      <td>OK</td>
      </tr>";
}
#######################################
echo "Total de E-mails enviados: $contagem";
} else {
echo "Senha esta errada, tente novamente";
}

}else{
?>
<form method="POST" action="enviar.php">
Senha:
<BR><input type="password" size="34" name="senha_digitada">
<BR>Assunto:
<BR><input type="text" size="34" name="assunto">
<BR>Mensagem:
<BR>
<?
   include("editor/index.php"); // este é o editor HTML
   $oEditor= new FCKeditor;
   $oEditor->Value = '';
   $oEditor->CreateEditor("mensagem","100%",250);
?>
<input type='hidden' name='enviar' value='t'>
<BR><input type="submit" value="Enviar">
</form>
<?
}
?>

</BODY>
</HTML>

Link to comment
Share on other sites

  • 0
deixa eu ver se entendi: quando você muda a cor da fonte, no e-mail vai beleza, mas quando você muda o tipo da fonte não muda?

Isso mesmo, você sabe o q pode ser?

abracos

Link to comment
Share on other sites

  • 0
pode ser q o servidor não tenha aquele estilo de fonte q você escolheu...

se não foi isso, não sei mesmo o q pode ser, porque o script tá certo, se tá funcionando com a cor

aproveita pra se cadastrar ai no fórum.... wink.gifbiggrin.gif

A fonte é arial, num tinha opq dar problema.

você tem ou sabe onde eu acho um script q funcione?

abracos

Jorge

Link to comment
Share on other sites

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...