
codigo para enviar mensajes no funciona
Publicado por Marcelino (29 intervenciones) el 10/06/2024 03:14:54
este codigo es para enviar mensajes a correos
pero me esta arrojando estos errores o warnings
2024-06-10 01:05:03 CLIENT -> SERVER: EHLO localhost 2024-06-10 01:05:03 SMTP ERROR: EHLO command failed: 2024-06-10 01:05:03 SMTP NOTICE: EOF caught while checking if connected 2024-06-10 01:05:03 SMTP Error: Could not connect to SMTP host. 2024-06-10 01:05:03 SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address:
este es el codigo: puede alguien dcirme por que eso?
[code]
[code]<?php
/////////CODIGO PARA ENVIAR MENSAJE DE CORREO A MULTIPLES DESTINATARIOS.
$connect = pg_connect("host=localhost port=5432 dbname=pediatria user=postgres password=xxx*/1808");
require("PHPMailer-master/class.phpmailer.php");
require("PHPMailer-master/class.smtp.php");
//ini_set('display_errors', 1);
error_reporting(E_ALL ^ E_WARNING ^ E_NOTICE);
$de = $_POST["de_txt"];
$para = $_POST["para_txt"];
$asunto = $_POST["asunto_txt"];
$archivo = $_FILES["archivo_fls"]["tmp_name"];
$destino = $_SERVER['DOCUMENT_ROOT']."/".$_FILES["archivo_fls"]["name"];
//echo $_SERVER['DOCUMENT_ROOT'];
$mensaje = $_POST["mensaje_txa"];
if(move_uploaded_file($archivo,$destino))
{
$smtp=new PHPMailer();
# Indicamos que vamos a utilizar un servidor SMTP
$smtp->IsSMTP();
# Definimos el formato del correo con UTF-8
$smtp->CharSet="UTF-8";
$smtp->SMTPDebug = 1;
# autenticación contra nuestro servidor smtp
// $mail->isSMTP();
// $smatp->Host = 'localhost';
// $mail->SMTPAuth = false;
// $mail->SMTPAutoTLS = false;
// $mail->Port = 25;
$smtp->SMTPAuth = false; //true; // enable SMTP authentication
$smtp->SMTPAutoTLS = false;
$smtp->SMTPSecure = "tls";
$smtp->Host = "smtp.live.com";
// sets MAIL as the SMTP server
$smtp->Username = "[email protected]";
// MAIL username
$smtp->Password = "password"; //"";
// MAIL password
$smtp->Port = 25; //587;
# datos de quien realiza el envio
$smtp->From = "[email protected]";
// from mail
$smtp->FromName = "Alejon";
// from mail name # Indicamos la dirección donde enviar el mensaje
/* $para="[email protected]";
$nameTo="Andres";
$smtp->AddAddress($para,$nameTo); */
$smtp->Subject = $asunto;
$smtp->Body = $mensaje;
$smtp->WordWrap = 50;
$smtp->Timeout=30;
$smtp->IsHTML(true);
$smtp->MsgHTML($mensaje);
$smtp->AddAttachment($destino, $_FILES["archivo_fls"]["name"]);
$connect = pg_connect("host=localhost port=5432 dbname=pediatria user=postgres password=xxx*/1808");
/*creo el array o query que debe traer tanto el nombre como la cuenta de correos*/
$mailTo = "SELECT nombres,cta_correo FROM pacientes";
$mailTo = @pg_query($connect,$mailTo);
while($select3 = @pg_fetch_array($mailTo))
{
$name = $select3['nombres'];
$mail = $select3['cta_correo'];
$smtp->ClearAllRecipients();
$smtp->AddAddress($mail,$name);
if (!$smtp->Send())
{
$respuesta ="El mensaje no se pudo enviar";
$respuesta .="Error: " .$mail->ErrorInfo;
}
else
{
echo $respuesta ="El mensaje ha sido enviado a todos los Pacientes";
echo "<script>location.href='xve.php'</script>";
}
}
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="estilo.css" type="text/css">
<style>
form { margin: 1em auto; text-align: center; }
span{ color: #F60; font-size: 1.5 em; }
</style>
</head>
<body>
<?php echo $respuesta;?>
<form name="mail_frm" method="post" class="contact_form" enctype="multipart/form-data" action="<?php echo $_SERVER["PHP_SELF"]?>">
<li>
<!-- <label for="name">De:</label>
--> <input type="text" name="de_txt" id='De' placeholder="De" required>
<span class="form_hint">Formato correcto: "[email protected]"</span>
</li>
<!--De:<input type="text" name="de_txt" /> <br/> <br/>
--><!--Para:<input type="text" name="para_txt" /> <br/> <br/>-->
<li>
<input type="text" name="asunto_txt" id='Asunto' placeholder="Asunto" required>
<span class="form_hint">Formato correcto: "texto"</span>
</li>
Adjuntar Archivo: <input type="file" name="archivo_fls" /> <br/> <br/>
Mensaje:<br /><textarea name= "mensaje_txa"/>
pero me esta arrojando estos errores o warnings
2024-06-10 01:05:03 CLIENT -> SERVER: EHLO localhost 2024-06-10 01:05:03 SMTP ERROR: EHLO command failed: 2024-06-10 01:05:03 SMTP NOTICE: EOF caught while checking if connected 2024-06-10 01:05:03 SMTP Error: Could not connect to SMTP host. 2024-06-10 01:05:03 SMTP connect() failed. https://github.com/PHPMailer/PHPMailer/wiki/Troubleshooting 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address: 2024-06-10 01:05:03 Invalid address:
este es el codigo: puede alguien dcirme por que eso?
[code]
[code]<?php
/////////CODIGO PARA ENVIAR MENSAJE DE CORREO A MULTIPLES DESTINATARIOS.
$connect = pg_connect("host=localhost port=5432 dbname=pediatria user=postgres password=xxx*/1808");
require("PHPMailer-master/class.phpmailer.php");
require("PHPMailer-master/class.smtp.php");
//ini_set('display_errors', 1);
error_reporting(E_ALL ^ E_WARNING ^ E_NOTICE);
$de = $_POST["de_txt"];
$para = $_POST["para_txt"];
$asunto = $_POST["asunto_txt"];
$archivo = $_FILES["archivo_fls"]["tmp_name"];
$destino = $_SERVER['DOCUMENT_ROOT']."/".$_FILES["archivo_fls"]["name"];
//echo $_SERVER['DOCUMENT_ROOT'];
$mensaje = $_POST["mensaje_txa"];
if(move_uploaded_file($archivo,$destino))
{
$smtp=new PHPMailer();
# Indicamos que vamos a utilizar un servidor SMTP
$smtp->IsSMTP();
# Definimos el formato del correo con UTF-8
$smtp->CharSet="UTF-8";
$smtp->SMTPDebug = 1;
# autenticación contra nuestro servidor smtp
// $mail->isSMTP();
// $smatp->Host = 'localhost';
// $mail->SMTPAuth = false;
// $mail->SMTPAutoTLS = false;
// $mail->Port = 25;
$smtp->SMTPAuth = false; //true; // enable SMTP authentication
$smtp->SMTPAutoTLS = false;
$smtp->SMTPSecure = "tls";
$smtp->Host = "smtp.live.com";
// sets MAIL as the SMTP server
$smtp->Username = "[email protected]";
// MAIL username
$smtp->Password = "password"; //"";
// MAIL password
$smtp->Port = 25; //587;
# datos de quien realiza el envio
$smtp->From = "[email protected]";
// from mail
$smtp->FromName = "Alejon";
// from mail name # Indicamos la dirección donde enviar el mensaje
/* $para="[email protected]";
$nameTo="Andres";
$smtp->AddAddress($para,$nameTo); */
$smtp->Subject = $asunto;
$smtp->Body = $mensaje;
$smtp->WordWrap = 50;
$smtp->Timeout=30;
$smtp->IsHTML(true);
$smtp->MsgHTML($mensaje);
$smtp->AddAttachment($destino, $_FILES["archivo_fls"]["name"]);
$connect = pg_connect("host=localhost port=5432 dbname=pediatria user=postgres password=xxx*/1808");
/*creo el array o query que debe traer tanto el nombre como la cuenta de correos*/
$mailTo = "SELECT nombres,cta_correo FROM pacientes";
$mailTo = @pg_query($connect,$mailTo);
while($select3 = @pg_fetch_array($mailTo))
{
$name = $select3['nombres'];
$mail = $select3['cta_correo'];
$smtp->ClearAllRecipients();
$smtp->AddAddress($mail,$name);
if (!$smtp->Send())
{
$respuesta ="El mensaje no se pudo enviar";
$respuesta .="Error: " .$mail->ErrorInfo;
}
else
{
echo $respuesta ="El mensaje ha sido enviado a todos los Pacientes";
echo "<script>location.href='xve.php'</script>";
}
}
}
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" href="estilo.css" type="text/css">
<style>
form { margin: 1em auto; text-align: center; }
span{ color: #F60; font-size: 1.5 em; }
</style>
</head>
<body>
<?php echo $respuesta;?>
<form name="mail_frm" method="post" class="contact_form" enctype="multipart/form-data" action="<?php echo $_SERVER["PHP_SELF"]?>">
<li>
<!-- <label for="name">De:</label>
--> <input type="text" name="de_txt" id='De' placeholder="De" required>
<span class="form_hint">Formato correcto: "[email protected]"</span>
</li>
<!--De:<input type="text" name="de_txt" /> <br/> <br/>
--><!--Para:<input type="text" name="para_txt" /> <br/> <br/>-->
<li>
<input type="text" name="asunto_txt" id='Asunto' placeholder="Asunto" required>
<span class="form_hint">Formato correcto: "texto"</span>
</li>
Adjuntar Archivo: <input type="file" name="archivo_fls" /> <br/> <br/>
Mensaje:<br /><textarea name= "mensaje_txa"/>
Valora esta pregunta


0