Questions tagged as 'phpmailer'

2
answers

SMTP ERROR: Failed to connect to server: Connection refused

I am trying to send a form in PHP to send it through the Godaddy server, but when I send it I get the error <?php $nombre = $_POST['nombre']; $email = $_POST['email']; $compania = $_POST['compania']; $telef...
asked by 01.06.2017 / 06:59
1
answer

Doubt with phpMailerAutoload SERVER - CLIENT: 220 smtp.gmail.com ESMTP

I commented that it is the first time that I send emails using gmail with phpMailer. But I have a question, when I send an email, it sends me this message: 2017-09-06 15:20:01 SERVER -> CLIENT: 220 smtp.gmail.com ESMTP e65sm92479oia.15 - gs...
asked by 06.09.2017 / 17:32
1
answer

Send to different recipients Php Mailer

I am doing a generated order, and when this is correct send an email to the client with acknowledgments and the corresponding invoice. But you would need that at the same time send an email to another address that would be the administration so...
asked by 03.01.2019 / 13:42
0
answers

use proxy with phpmailer

I describe my situation. I have a system that sends emails via phpmailer but I would like to do it now through proxy. So my question is how to configure the proxy to function. $mail = new PHPMailer; $mail->IsSMTP();...
asked by 27.11.2018 / 03:47
1
answer

Form Field - Multiple Selection - The PHP Mailer collects me only one of the several values that you select

I want to consult whoever corresponds, something that should have a solution. It turns out that I have a form with several text fields, other so many of simple selection and a field of multiple selection. Using select2. The data of the comple...
asked by 03.12.2018 / 05:12
1
answer

How to send mail with Codeigniter using the email library?

I am starting to program so I am making a web page but the query mail does not work, it does not send the description. You could see my coding that is with Codeigniter and explain to me a bit that I'm wrong or because it does not work...
asked by 24.08.2018 / 19:28
0
answers

PHP Mailer sends emails to spam and not to the inbox

Good morning, I am sending emails through phpmailer but come to unwanted especially in destinations @ hotmail.com any idea that can be? <?php require '../phpmailer/PHPMailerAutoload.php'; $mail=new PHPmailer; $mail->...
asked by 06.08.2018 / 04:19
1
answer

How to send an array of javascript to an email either by php or by another technology? [closed]

I have a general arrangement that contains several fixes in which I store the information that has been selected by the user of several steps of a quote, which is the following: var seleccGeneral = [{"Paso 1": selectEmpStar},{"Paso 2": selectE...
asked by 22.12.2017 / 17:31
1
answer

Php mailer how to configure?

I'm starting to use the PHPMailer documentation but I do not know how to link it to my email, I just downloaded the most recent version of PHPmailer and my version of PHP in my ÌIS es la 5.6.31, mi código de PHP 'is t...
asked by 10.01.2018 / 02:25
1
answer

Form with image, ajax and phpmailer

I am trying to make a request POST but all the data is sent except the image. How can I solve it? JavaScript $(function () { $("#botonEnviar").click(function () { var nombre = document.getElementById("nombre").value; var c...
asked by 17.09.2017 / 18:37