Questions tagged [smtpexception]
6 questions
9
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…

Chrsjkigs99
- 850
- 1
- 9
- 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
- 10
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
- 465
- 3
- 11
- 25
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,169
- 5
- 16
- 33
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,169
- 5
- 16
- 33