Jump to content

Enviar mail com tags html


samuca

Recommended Posts

Boas...

Criei à pouco um script para enviar mails para a minha newsletter e precisava de meter tags html no email (com links e tal). Mas quando recebo o mail ele mostra as tags e não as interpreta.

O código é o seguinte:

$rem= $_POST['remetente'];
$ass= $_POST['assunto'];
$text= $_POST['text'];

if($ass!="" and  $text!="")
{
	$consulta = "SELECT * FROM newsletter";
	$result = mysql_query($consulta, $conexao);

	while ($consulta = mysql_fetch_array($result)){
		$email = $consulta["email"];
		$num = $consulta["num"];

		mail("$email","$ass","$text","From: $rem");	
		echo "<br>".$num." - ".$email;
	}

	echo "<br><br>E-mails enviados";
}

Aguém me pode ajudar? Era mesmo essencial enviar tags html... ainda sou iniciante no php

Link to comment
Share on other sites

Já consegui por a funcionar... com algumas alterações no código

	
        $rem= $_POST['remetente'];
        $ass= $_POST['assunto'];
$text= $_POST['text'];

$headers = "From: Newsletter JEBairrada <".$rem.">\r\n";
$headers .= "MIME-Version: 1.0\r\n";
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";

$text = nl2br($text);

if($ass!="" and  $text!="" and $rem!="")
{
	$consulta = "SELECT * FROM newsletter";
	$result = mysql_query($consulta, $conexao);

	while ($consulta = mysql_fetch_array($result)){
		$email = $consulta["email"];
		$num = $consulta["num"];

		mail($email,$ass,$text,$headers);	
		echo "<br>".$num." - ".$email;
	}

	echo "<br><br>E-mails enviados";
}

Só mais uma coisinha, já pesquisei e não vi nada.

Dá pra enviar anexos no e-mail? Como? (isto não é indispensável, mas já agora...)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...

Important Information

By using this site you accept our Terms of Use and Privacy Policy. We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.