Questions tagged as 'smtp'

0
answers

Digital Ocean Droplet Ubuntu 16 + Wordpress + WP Mail SMTP not sent contact Email form

I installed Wordpress on Ubuntu 16. I have my emails on dreamhost. Everything is working well I installed WP Mail SMTP But the contact form does not send emails Should I install postfix? Or email php? Thank you.     
asked by 07.05.2018 / 19:52
0
answers

Mail from PHP arrives as spam

Good morning, In the following PHP code I send two emails, I only leave the part of the shipment since the upper part where the variables are declared I have everything right, First shipment: I must send it to a @ gmail.com, which is al...
asked by 27.04.2018 / 23:11
0
answers

Obtain Excepcion when a mail does not reach its recipient by a badly written recipient or that does not exist

I have this code public void SendEMail(string recipient, string subject, string message) { try { //Intialise Parameters SmtpClient client = new SmtpClient(clientAddress);...
asked by 09.04.2018 / 22:09
1
answer

Send query parameters by e-mail Django

How can I send parameters of a query to the body of a message, and send it by email. The e-mail is already sent, but I need to send parameters. autorizar=AutorizacionDocumentos.objects.get(id=idDoc.id) asunto = 'autorizaciòn'...
asked by 04.04.2018 / 21:01
0
answers

Avoid emails from gmail with swift mailer in yii2

I am trying to configure my yii2 application to send emails from my gmail account, I have already enabled "Allow access to less secure applications" in my account. I configured the swift mailer as shown below, everything else (Model and Controll...
asked by 27.03.2018 / 18:03
2
answers

PHPMailer can not connect to the SMTP host

I have this code made in PHP to send emails from a form on a web page. In localhost it works perfectly, but when I upload it to webcindario it does not work and it gives me this smtp error:    Could not access file: SMTP Error: Could not conn...
asked by 22.03.2018 / 13:52
1
answer

Problem sending mail from laravel

I have the following configuration in the .env file MAIL_DRIVER=mail MAIL_HOST=smtp.gmail.com MAIL_PORT=587 [email protected] MAIL_PASSWORD=******** MAIL_ENCRYPTION=ssl and my driver in the following way: <?php names...
asked by 07.11.2017 / 06:56
1
answer

Canvas-lms: SMTP From address may not be blank: nil

I installed Canvas-Lms however, I could not send emails from the application, it always tells me the SMTP error From address may not be blank: nil I have configured the outgoin_mail.yml correctly, however it shows the same error. Can som...
asked by 30.10.2017 / 18:18
2
answers

Unable to Send Mail [duplicate]

Good this is my code: MailMessage msg = new MailMessage(); msg.To.Add(new MailAddress("[email protected]")); msg.From = new MailAddress("[email protected]"); msg.Subject = "Asunto(Correo Prueba)"; msg.Body = "Contenido Prueba"; msg.IsBod...
asked by 11.09.2018 / 20:14