Skip to content
Advertisement

Tag: email

Getting this error while connecting to smtp;451 4.7.1 : Recipient address rejected: Greylisted for 5 minutes

I am trying to send email to an outlook email address using my test SMTP server and got this error. Using PHPMAILER module for making the SMTP connection. Answer You’re being greylisted, and it’s working for them! Greylisting is an anti-spam measure that attempts to identify badly-behaved mail clients. A large proportion of spambots generate messages and try to send

How to include PHPmailer in functions.php properly (WordPress)

I’m trying to include PHPmailer in functions.php my code: function test_mailer () { } I also tried to put require_once out of the try catch still the same error here is the snippet about the error “PHP Fatal error: Uncaught Error: Class ‘PHPMailer’ not found” I use betheme template and I stored the files PHPmailer in betheme/includes/mail. Answer As BA_Webimax

Laravel mail sending through smtp server error 503 5.5.2

I am trying to send notification mails from php through mail queue in laravel, as far as i can tell everything works fine, i have already tested configuration on my personal mail acc. but when i try sending mail through smtp server it fails with following error. mail config in env. : mail config in mail.php : payload: Stacktrace: Answer

How to configure `.env` file in Laravel for sending mail?

Getting error while sending mail from a in Laravel website. local.ERROR: Connection could not be established with host smtp.gmail.com [A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond. #10060] .env file Already googling but can’t get the solution yet. Whatever I

Advertisement