phpmailer Questions

4

Solved

Spamassasin gives the following flag on my emails: * 0.8 RDNS_NONE Delivered to internal network by a host with no rDNS "This test checks to see if there is a reverse DNS entry for the las...
Messieurs asked 6/9, 2012 at 10:17

3

I'm trying to send emails via PHPMailer and it's working pretty fine. There's just one problem and I do not know how to fix it. There is the possibility, that I might need to try to send emails to ...
Evette asked 16/5, 2020 at 2:12

2

Solved

Im looking to use php mailers debug information to display in a webpage. When I enable debugging it just echo's the string. This means that my html is out of order, I wish to therefor output as a v...
Progenitive asked 25/11, 2014 at 9:17

11

Solved

How do I disable the error messages from the PHPMailer class? I'm displaying my own error messages and I don't want users to see errors such as "SMTP Error: Could not connect to SMTP host." Thanks...
Adela asked 25/1, 2011 at 20:32

6

Solved

I need help please this is my code: require 'PHPMailerAutoload.php'; $mail = new PHPMailer; $mail->isSMTP(); $mail->Host = "smtp.gmail.com"; $mail->SMTPDebug = 2; $mail->SMTPAuth = tru...
Bonin asked 11/12, 2013 at 15:35

6

Solved

in my CRM online system I control ingoing mails with IMAP protocol. Now I'm making sending mails with phpmailer and SMTP protocol. Everything is ok but I have one wierd thing. How to make sent with...
Aruwimi asked 19/12, 2011 at 12:38

10

I am trying to let users fill out a contact form, which will then be sent to my email. But its not working for some reason. I just get a blank page with no error message or any text and email is al...
Swineherd asked 28/6, 2013 at 12:2

2

Solved

I am working on an ordering system, which will need to send the customer, distributor and the website owner an email. The owner and distributor can get the same email (order details etc), but the ...
Own asked 9/3, 2015 at 12:9

9

Solved

Is there a way that I can configure the WAMP server for PHP to enable the mail() function?
Unstrained asked 24/4, 2011 at 21:12

4

Solved

Hi I am trying to use PHPMailer Library from GitHUB in my Codeigniter application. I downloaded the code and unzipped in my application\library folder. So there I have a folder called vendor insid...
Lat asked 30/6, 2017 at 9:36

9

Solved

I am using PHPMailer on PHP 5.6, the increased security around certificated in PHP 5.6 is certainly fun. I am trying to send a test message to a domain hosted on dreamhost, the error that comes ba...
Nail asked 21/5, 2015 at 11:5

6

Solved

Is there a way to change the return-path using PHPMailer I did the following and it did not work $mail->AddCustomHeader('Return-path:[email protected]'); I'm using the following stateme...
Bernetta asked 12/8, 2010 at 12:21

2

I use PHPMailer, along with Apache and PHP, locally. When I test my SSL config and my cacerts I get default_cert_file = C:\Program Files\Common Files\SSL/cert.pem default_cert_file_env = SSL_CERT...
Eclogue asked 1/10, 2017 at 10:57

18

Solved

I know that this issue has been posted many times, but for me it seems to be a different problem. Indeed, this error Warning: require(vendor/autoload.php): failed to open stream: No such file or d...
Celloidin asked 18/12, 2016 at 14:33

2

I have a little issue with Wordpress image, will be thankful for any help. I have existing database, which I import with dump. My Mysql Dockerfile listing below: FROM mariadb:10.1.20 COPY dump/...
Vivi asked 13/1, 2017 at 18:26

13

I tried :include_once('C:\Inetpub\wwwroot\php\PHPMailer\PHPMailerAutoload.php'); Fatal error: Class 'PHPMailer' not found in C:\Inetpub\wwwroot\php\index.php on line 151 I place the PHPMaile...
Hayfork asked 6/3, 2015 at 19:48

4

Solved

PHPMailer checks is_file for every attachment (in addAttachment function, in class.phpmailer.php file): if (!@is_file($path)) { throw new phpmailerException($this->lang('file_access') . $path,...
Cricket asked 10/12, 2014 at 16:6

5

Solved

With php mail() I can write mail('[email protected]','subject!','body','From: [email protected]','-f [email protected]'); But how can I do the same with phpmailer ?
Aleras asked 17/12, 2012 at 17:28

4

Solved

Based on the example that PHPMailer provides i have the script below, date_default_timezone_set('Etc/UTC'); require './PHPMailerAutoload.php'; $mail = new PHPMailer; $mail->isSMTP(); $mail->...
Yoohoo asked 21/9, 2015 at 11:30

6

I sending emails using PHPMailer and SpamAssassin is tagging it * 3.3 MIXED_ES Too many es are not es What does it mean? What is "es"? How to fix?
Dutcher asked 30/1, 2019 at 21:37

1

As many of you are aware, Microsoft is deprecating basic authentication (login and password) for Exchange online on 01/10/2022 onwards. You can read the full article over here: https://www.microsof...
Claviform asked 27/9, 2022 at 13:56

21

Solved

I'm using PHPMailer in a Simple Script For Send Email's Through Gmail, and I'm getting an "Unknown Error" (At least for me!): SMTP Error: Could not authenticate. Error: SMTP Error: Could not a...
Welcome asked 16/10, 2010 at 16:57

2

Solved

I want to send an email without SSL using PHPMailer. I have enabled the debug mode so that I can check the details in the logs. $mail = new PHPMailer\PHPMailer\PHPMailer(); $mail->IsSMTP(true...
Tar asked 28/9, 2018 at 10:6

4

Solved

I'm trying to send a e-mail with the PHPmailer class, but the html i send, is empty, or the characters are unconfigured, and without accents. <?php header("Content-Type: text/html; charset=ISO-...
Nealah asked 19/12, 2012 at 16:21

5

Solved

I have been using PHPMailer for a long time to send emails using Google credentials (login and password) by enabling the "Less secure app" option in the Google settings. As Google is noti...
Peptic asked 4/5, 2022 at 13:17

© 2022 - 2024 — McMap. All rights reserved.