|
Posted by kapten on 09/28/28 11:43
Try adding ini_set('sendmail_from',$para);
like this:
<?php
//set_ini('sendmail_from','');
$para = 'webmaster@thecamino.com.ar' . ', ';
$para .= 'egb@thecamino.com.ar';
ini_set('sendmail_from',$para);
$asunto = 'Prueba email con html';
$mensaje = 'html>head> title>test/title>/head>body>
p>podrísfuncionar de una vez?</p></body></html>';
$cabeceras = 'MIME-Version: 1.0' . "\r\n";
$cabeceras .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
$cabeceras .= 'To: nadie <egb@1463.com.ar>' . "\r\n";
$cabeceras .= 'From: nadie <egb@example.com>' . "\r\n";
$cabeceras .= 'Cc: egb@thecamino.com.ar' . "\r\n";
$cabeceras .= 'Bcc: webmaster@thecamino.com.ar' . "\r\n";
mail($para, $asunto, $mensaje, $cabaceras);
?>
Navigation:
[Reply to this message]
|