Mail

Hola que tal?
quisiera hacerte una pregunta, como hago para ,mandar una mail en php pero que este contenga una imagen, se que se hace con la funcion mail pero yo quiero mandar una imagen, desde ya muchas gracias

1 Respuesta

Respuesta
1
pon en el $coment
la apertura y cierre del html con <html></html>
Y en $extra pones:
$extra="From:yo<[email protected]> \n";
$extra .= "MIME-Version: 1.0\r\n";
$extra .= "Content-type: text/html; charset=iso-8859-1\r\n";
Hola que tal?
sabes que cuando quiero que aparezca la imagan incrustada, y voy a ver el correo me aparece el codigo, no la imagen, capaz que lo estoy haciendo mal te muestro como lo hago:
$desti=$v[mail];
$asunto="Felicidades";
$extra="From:yo<[email protected]> ";
$coment="<table width='15%' border='0' cellspacing='0' cellpadding='0' height='55'>
<tr>
<td><img src='http://midominio/imagen/117_2.gif' width='138' height='105'></td>
</tr>
</table>";
mail($desti,$asunto,$coment,$extra);
haciendo esto me muestra el codigo como contenido.
Muchas gracias por tu ayuda. nos vemos
¿Cómo quieres que vaya la imagen?
Adjunta, ¿cómo si fuera un archivo o que vaya incrustada en el propio mensaje?
Hola Gracias por contestarme tan rápido,
quiero de las dos maneras, incrustada en el propio mmensaje y adjunta.
Gracias
He encontrado por ahi una funcion para mandar emails, permite adjuntar documentos (imagenes, etc):
function SendMail($From, $FromName, $To, $ToName, $Subject, $Text, $Html, $AttmFiles)
$From ... sender mail address like "[email protected]"
$FromName ... sender name like "My Name"
$To ... recipient mail address like "[email protected]"
$ToName ... recipients name like "Your Name"
$Subject ... subject of the mail like "This is my first testmail"
$Text ... text version of the mail
$Html ... html version of the mail
$AttmFiles ... array containing the filenames to attach like array("file1","file2")
*/
$TEXT="This is the first test\n in text format\n.";
$HTML="<font color=red>This is the first test in html format.</font>";
$ATTM=array("/home/myself/test/go.jpg",
"/home/myself/test/SomeDoc.pdf");
SendMail(
"[email protected]","PHP Apache Webmailer", //sender
"[email protected]","Recipients Name", //recipient
"Testmail", //subject
$TEXT,$HTML,$ATTM); //body and attachment(s)
function SendMail($From,$FromName,$To,$ToName,$Subject,$Text,$Html,$AttmFiles){
$OB="----=_OuterBoundary_000";
$IB="----=_InnerBoundery_001";
$Html=$Html?$Html:preg_replace("/\n/","{br}",$Text)
or die("neither text nor html part present.");
$Text=$Text?$Text:"Sorry, but you need an html mailer to read this mail.";
$From or die("sender address missing");
$To or die("recipient address missing");
$headers ="MIME-Version: 1.0\r\n";
$headers.="From: ".$FromName." <".$From.">\n";
$headers.="To: ".$ToName." <".$To.">\n";
$headers.="Reply-To: ".$FromName." <".$From.">\n";
$headers.="X-Priority: 1\n";
$headers.="X-MSMail-Priority: High\n";
$headers.="X-Mailer: My PHP Mailer\n";
$headers.="Content-Type: multipart/mixed;\n\tboundary=\"".$OB."\"\n";
//Messages start with text/html alternatives in OB
$Msg ="This is a multi-part message in MIME format.\n";
$Msg.="\n--".$OB."\n";
$Msg.="Content-Type: multipart/alternative;\n\tboundary=\"".$IB."\"\n\n";
//plaintext section
$Msg.="\n--".$IB."\n";
$Msg.="Content-Type: text/plain;\n\tcharset=\"iso-8859-1\"\n";
$Msg.="Content-Transfer-Encoding: quoted-printable\n\n";
// plaintext goes here
$Msg.=$Text."\n\n";
// html section
$Msg.="\n--".$IB."\n";
$Msg.="Content-Type: text/html;\n\tcharset=\"iso-8859-1\"\n";
$Msg.="Content-Transfer-Encoding: base64\n\n";
// html goes here
$Msg.=chunk_split(base64_encode($Html))."\n\n";
// end of IB
$Msg.="\n--".$IB."--\n";
// attachments
if($AttmFiles){
foreach($AttmFiles as $AttmFile){
$patharray = explode ("/", $AttmFile);
$FileName=$patharray[count($patharray)-1];
$Msg.= "\n--".$OB."\n";
$Msg.="Content-Type: application/octetstream;\n\tname=\"".$FileName."\"\n";
$Msg.="Content-Transfer-Encoding: base64\n";
$Msg.="Content-Disposition: attachment;\n\tfilename=\"".$FileName."\"\n\n";
//file goes here
$fd=fopen ($AttmFile, "r");
$FileContent=fread($fd,filesize($AttmFile));
fclose ($fd);
$FileContent=chunk_split(base64_encode($FileContent));
$Msg.=$FileContent;
$Msg.="\n\n";
}
}
//message ends
$Msg.="\n--".$OB."--\n";
mail($To,$Subject,$Msg,$headers);
//syslog(LOG_INFO,"Mail: Message sent to $ToName <$To>");
}
Para que la imagen aparezca incrustada en el texto, tendras que ponerla en el html del cuerpo del mensaje, al estilo:
<img src="http://tudominio.com/path/imagen.jpg">
Path: es el path donde esta colocada la imagen en tu servidor.

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas