Questions tagged [smtpexception]

7 questions
6
votes
3 answers

System.Net.Mail.SmtpException: Insufficient system storage. The server response was: 4.3.1 Insufficient system resources

I've recently designed a program in C# that will pull information from SQL databases, write an HTML page with the results, and auto-email it out. I've got everything working [sporadically], the problem I'm having is that I seem to be crashing our…
raney
  • 838
  • 1
  • 10
  • 18
4
votes
1 answer

SMTP Send get SmtpFailedRecipientException

Here is my problem. I am sending an email to few contacts and I am catching the error if there is a unvalid email addresse. Basicly, it is working, but if there is more than 1 invalid email, I am not receiving notification from others bad email…
Wanceslas
  • 107
  • 1
  • 1
  • 9
1
vote
2 answers

How to check e-mail status is delievered or not in c#

Currently i am sending mail through SMTP Code is given below SmtpClient client = new SmtpClient(); client.DeliveryMethod = SmtpDeliveryMethod.Network; //client.EnableSsl = true; client.Send(msg); I have to check the delievery status that mail is…
Vivacity InfoTech
  • 445
  • 3
  • 9
  • 22
0
votes
0 answers

Sometimes System.Net.Mail.SmtpException: The SMTP server requires a secure connection or the client was not authenticated

I use SmtpClient to send mail. However, when I run the code, sometimes it throws "System.Net.Mail.SmtpException: The SMTP server requires a secure connection or the client was not authenticated. The server response was: 5.7.0 Authentication…
0
votes
1 answer

Python Script to send emails fails occasionally with [Errno 10060]

I have set up a python script to insert a new record into a table, send out an email and update the most recently inserted record once the email is sent out successfully. The Python Script is as follows: import smtplib import pyodbc import…
Prem27
  • 1
  • 1
0
votes
0 answers

Configure program to avoid SmtpException

I am trying to send Email through my C# code but I am getting SmtpException 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…
Nuke
  • 1,039
  • 5
  • 13
  • 29
0
votes
1 answer

SmtpException while sending Email

I am trying to send Email through my C# code but I am getting SmtpException 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…
Nuke
  • 1,039
  • 5
  • 13
  • 29