Questions tagged as 'phpmailer'

1
answer

PHPMailer Linux Debian: EOF caught while checking if connected

Hello! I'm having a problem using PHPMailer to send an email through an external SMTP. When I try to run the code, it always shows the following error at the end:    SMTP - > NOTICE: EOF caught while checking if connectedThe following F...
asked by 05.09.2018 / 04:35
0
answers

PHPMailer AddAttachment does not work

Good evening. I'm trying to make an attachment in PhpMailer as follows: $arquivo = '../enviados/planilha.xlsx'; $mail->AddAttachment($arquivo); That way, the attachment does not go along with the email. But when I put the path of the dir...
asked by 29.08.2018 / 03:30
1
answer

Send Cart Session via email with PHPmailer

I have this code that shows the results of the items you have in the cart <?php session_start(); require_once "functions/product.php"; require_once "functions/cart.php"; $pdoConnection = require_once "connection.php";...
asked by 27.08.2018 / 14:44
1
answer

PHPMailer with locaweb - You are not saving the emails sent to my LocaWeb account

I configured PHPMailer and it is correctly sending the emails, however in the sent box of my locaWeb account these sent emails do not register. Do I have to do some configuration for this?     
asked by 27.08.2018 / 05:57
0
answers

Error sending emails, giving a form submission error

<?php if(!isset($origin, $content, $to)) exit(); if(!isset($titleName) || $titleName == NULL) { $titleName = ""; } else { $titleName = " por ".$titleName; } $phpmailer = true; $from = array( "name" => "IOCM", "host" =>...
asked by 29.08.2018 / 20:05
0
answers

PHPMailer: SMTP connect () failed

I am doing authenticated submissions, however it is strange that sometimes it sends normally, and sometimes it fails. The client insists that on his server everything is correct, and now I am already without arguments. The version I use is 5.2.8...
asked by 07.08.2018 / 15:05
0
answers

Problem sending phpmailer to the server

People, this can be a simple or complicated problem, I just know that I can not solve it. I have done thousands of searches on hosting topics, here in Stack, but it still does not work, so I do not know if the problem is in the phpmailer file...
asked by 13.08.2018 / 16:41
1
answer

PHPMailer - Attachment has no extension

Well, when sending my attachment using PHPMailer, if I do not add an extension after the variable, I can not get the extension of the selected file ie: $mail->addAttachment($uploadfile) should send the file, giving its name and type...
asked by 04.07.2018 / 17:55
0
answers

Yii Framework and phpmailer

Good afternoon, I'm using the yii framework and I'm using class phpmailer. I search the database for the user's email for sending. Problem is that it is not sending to other mail servers, if I put the email of the domain that the site is hosted...
asked by 03.07.2018 / 18:06
1
answer

PHPmailer + gmail

I'm using the latest version of PHPMailer to fire email using my Gmail account, this application runs locally, below my code (copied from PHPMailer's own GitHub talking about sending to Gmail): $mail = new PHPMailer; $mail->isSMTP(); $mail-...
asked by 29.06.2018 / 22:16