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 ...
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...
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...
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...
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...
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...
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 ...
9
Solved
Is there a way that I can configure the WAMP server for PHP to enable the mail() function?
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...
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...
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/...
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...
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,...
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 ?
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->...
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...
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...
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-...
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...
1 Next >
© 2022 - 2024 — McMap. All rights reserved.