Questions tagged as 'phpmailer'

2
answers

PHPMailer - Is it possible to resend an e-mail?

Is there any implementation that can be done in PHPMailer so that emails that could not be sent (due to the momentary drop in the site server that uses PHPMailer , for example) can be sent later? It can be some kind of monitoring...
asked by 22.07.2015 / 14:39
1
answer

How can I get the Input file path?

I need to send multiple attachments via PHPmailer and I'm using jQuery to get the value of input file , now I need to get the file path to be able to send it by email, however when I get the path it comes with C:\fakepath\image.jpg...
asked by 04.12.2014 / 18:04
1
answer

PHPMailer does not send email

I have a problem with the PHP Mailer class, and I have a bigger problem, because this is an email that is sent when there is a change in transaction status, so I can not debug this page because POST comes of an API. Everything is working, upd...
asked by 20.11.2015 / 13:01
1
answer

Connection test with PHPMailer

Working with PHPMailer at one time, I'm now inserting you into a more complex Content Manager and through the panel the person can insert multiple emails to be the PHPMailer Sender in several situations (for example: contact email, password reco...
asked by 01.04.2016 / 10:23
1
answer

PHP Mailer sending e-mail without the information

Folks, I made a landing page on the company page and it sends the information that people fill to my email using PHPMailer. Most emails are coming straight, with all the necessary information. However, some emails are coming empty, as if the var...
asked by 14.04.2016 / 13:30
1
answer

Errors connecting to SMTP from gmail using PHPMailer

Hello, I'm trying to send email using PHPMailer however I'm having some errors. First errors with the SMTP class not found. I discovered that I need to create a require for the PHPMailerAutoload.php file in my code. After this, problems such...
asked by 20.09.2016 / 15:31
4
answers

Connection error with SMTP when sending email using PHPMailer [closed]

I'm trying to implement sending mail with the PHPMailer library , however I've brought you the following errors : Edit: I am testing locally. SMTP -> ERROR: Failed to connect to server: Uma tentativa de conexão falhou porque...
asked by 17.07.2014 / 14:54
2
answers

Attachment submission with PHPMailer

I'm using PHPMailer to send attachments via contact form. Form front end: <form action="mail.php" method="POST" enctype="multipart/form-data"> <input type="hidden" name="tipo" value="trabalhe-conosco"> <input class="input_1...
asked by 16.08.2017 / 22:51
1
answer

Php Mailer error on hostgator

This error is giving hope that somebody help me please. Thank you    (Warning: stream_socket_enable_crypto (): Peer certificate   CN = '*.hostgator.com.br' did not match expected   CN = 'mail.systembit.com.br' in   /home/syste05...
asked by 27.08.2016 / 19:26
1
answer

How to add send via SMTP in phpMailer?

Good morning, I have the following code to send an email via PHPMailer. <?php $GetPost = filter_input_array(INPUT_POST,FILTER_DEFAULT); $Erro = true; $Tipo = $GetPost['tipo']; $Nome = $GetPost['nome'];...
asked by 30.08.2017 / 15:17