Questions tagged as 'smtp'

3
answers

How can I send an email through GMail?

I want to create an application to send email, I would like to use a GMail account to send these emails, how can I do that?     
asked by 19.12.2013 / 03:32
1
answer

SSL socket dying on the client and no errors on the server

I have a problem with connections to ssl sockets in python When I perform a stress test on the SMTP daemon that I am writing the client some sending threads die with " Connection reset by peer ", but server side does not there is no exceptio...
asked by 20.02.2014 / 19:03
2
answers

The SMTP server requires a secure connection or the client was not authenticated

I'm having the following error when working with SMTP and MailMessage in C #:    The SMTP server requires a secure connection or the client was not authenticated. The response from the server was: 5.5.1 Requested Authentica...
asked by 03.10.2015 / 02:06
2
answers

Insert image in body of email

How do I insert an image into the body of the email using C #? I have already been able to send as an attachment but I would like to know how to proceed to send it in the body of the email, is there anything that makes this possible?     
asked by 08.12.2015 / 19:32
3
answers

How to use emails in Azure?

I placed one of my sites on Azure. Is there no email service? I've been able to fire e-mails from external servers, but I want to create and use one in the same domain that is in Azure. How do I solve this problem?     
asked by 31.01.2014 / 18:58
1
answer

Is there an SmtpClient.Timeout with infinite value?

Is there any way to put SmtpClient.Timeout with the infinite value? If yes, how?     
asked by 28.09.2016 / 16:01
1
answer

How do I know if the email has reached the Recipient?

I'm building a (in PHP) system that needs approvals, and with each approval I send a confirmation email to the user ... I'm using phpMailler , and he informs me in the end that the server sent the email .. But I wanted to know (be sur...
asked by 30.10.2014 / 20:01
2
answers

Nodemailer sends email but recipient does not receive it (hostgator server)

I have an e-mail server on the hostgator and an account on it. I need to use nodemailer to send messages to my clients from this account. For this I need to manually configure with these instructions from the hostgator I'vetestedallpossiblec...
asked by 16.04.2016 / 19:53
3
answers

Is the SMTP addresses of email providers default to: smtp.provedor.com?

   Can there be an email provider that uses a SMTP address that does not start with smtp. ?       Or there is some rule that does not allow SMTP servers to be configured outside this standard. Because I'm implementing an email configurat...
asked by 14.03.2014 / 21:24
3
answers

Difficulties in sending E-mail using PHP

Based on the code below, used for sending e-mail: <?php $from = $_POST['email']; $to = '[email protected]'; $subject = $_POST['subject']; $message = $_POST['content']; $headers = 'From: ' . $from . "\r\n...
asked by 01.06.2015 / 21:16