python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Email still dropping into SPAM after SPF etc.; why?
I've automated the sending of my e-mails in PHP using PHPMailer:
$mail->isSMTP();
$mail->SMTPAuth = true;
$mail->Host = $host; // verified with my host
$mail->Port = 465;
$mail->Use...
DevelJoe
Votes: 0
Answers: 0
How to test whether SMTP connection credentials are correct without sending email in WordPress
I have configured the PHP mailer settings in WordPress in the following way. How can I verify if the STMP credentials that I set are correct or not without sending any email using wp_mail()?
add_actio...
Abhishek Kulkarni
Votes: 0
Answers: 1
How can I Send HTML outputs to an email as a PDF using DOMPDF
I'm using this library from Dompdf, after showing the file as a PDF I want to send it to my email, I have tried several methods but I have not found a solution so far.
Thanks in advance
$dompdf = new ...
Hisham Alfoqaha
Votes: 0
Answers: 2
utf-8 for attachment in PHPmailer
I've got problem with attachment name, if there are polish language diacritical signs, it won't display those signs.
I added just below php mailer class $mail->CharSet = 'UTF-8'; and it works for ...
Jaro
Votes: 0
Answers: 3