Comunidad de diseño web y desarrollo en internet online

problemas con phpmailer

Citar            
MensajeEscrito el 30 Nov 2012 04:41 pm
<?php
require 'class.phpmailer.php';

$mail = new PHPMailer(); // defaults to using php "mail()"

$mail->IsSendmail(); // telling the class to use SendMail transport

$mail->SetFrom('[email protected]', 'Reporte ');
$address = "[email protected]";
$mail->AddAddress($address, "Reporte ");
$mail->Subject = "Reporte ";
$mail->AltBody = "To view the message, please use an HTML compatible email viewer!"; // optional, comment out and test
$mail->MsgHTML('Buenos dias estamos enviando el Reporte ');

//Reoordenar el archivo
$file = file('data.txt');
$fo = fopen('data.txt','w+');
$m = '';
foreach($file as $k => $f){
if($k < count($file)-1){
$m .= preg_replace("[\n|\r|\n\r]", '', $f) . "\r\n";
}else{
$m .= preg_replace("[\n|\r|\n\r]", '', $f);
}
}
fwrite($fo,$m);
fclose($fo);

$mail->AddAttachment("data.txt"); // attachment

if(!$mail->Send()) {
echo "Mailer Error: " . $mail->ErrorInfo;
} else {
echo "Message sent!";
}

Por swingbeach21

Claber

104 de clabLevel



 

firefox
Citar            
MensajeEscrito el 30 Nov 2012 06:30 pm
Ajá, y el problema es??

Podrías configurar PHP Mailer para que utilice una cuenta por SMTP.

Por -george-

58 de clabLevel



 

Tartarus

firefox

 

Cristalab BabyBlue v4 + V4 © 2011 Cristalab
Powered by ClabEngines v4, HTML5, love and ponies.