Tagged Questions
on .NET Framework , allows applications to send e-mail by using the Simple Mail Transfer Protocol (SMTP)
17
votes
2answers
4k views
.NET 4.0 Fails When sending emails with attachments larger than 3MB
I recently had an issue after upgrading my .net framework to 4.0 from 3.5:
System.Net.Mail.SmtpException: Failure sending mail. ---> System.IndexOutOfRangeException: Index was outside the bounds ...
15
votes
6answers
15k views
c# SmtpClient class not able to send email using gmail
I'm having trouble sending email using my gmail account. Im pulling my hair out.
The same settings work fine in Thunderbird.
Here's the code. I've also tried port 465 with no luck.
SmtpClient ss = ...
12
votes
7answers
3k views
.NET Best Method to Send Email (System.Net.Mail has issues)
This seems to be pretty straight forward. I need to send email from some ASP.NET applications. I need to do this consistently without strange errors and without CPU utilization going through the roof. ...
11
votes
7answers
806 views
System.Net.Mail Alternative
I'm working on a tool that schedules emails with our mail server in C#. I had been using the System.Net.Mail classes to send the mail.
Recently I've come across various issues with regards to RFC ...
8
votes
6answers
5k views
Why can SmtpClient.SendAsync only be called once?
I'm trying to write a notification service (for completely legit non-spam purposes) in .NET using SmtpClient. Initially I just looped through each message and sent it, however this is slow and I ...
8
votes
5answers
4k views
Can I test SmtpClient before calling client.Send()?
This is related to a question I asked the other day on how to send email.
My new, related question is this... what if the user of my application is behind a firewall or some other reason why the ...
6
votes
5answers
3k views
C# sending mails with images inline using SmtpClient
SmtpClient() allows you to add attachments to your mails, but what if you wanna make an image appear when the mail opens, instead of attaching it?
As I remember, it can be done with about 4 lines of ...
5
votes
2answers
245 views
System.Net.Mail and MailMessage not Sending Messages Immediately
When I sent a mail using System.Net.Mail, it seems that the messages do not send immediately. They take a minute or two before reaching my inbox. Once I quit the application, all of the messages are ...
5
votes
2answers
3k views
How to set username and password for SmtpClient object in .NET?
I see different versions of the constructor, one uses info from web.config, one specifies the host, and one the host and port. But how do I set the username and password to something different from ...
5
votes
5answers
912 views
Sending out 20,000+ emails with asp.net
I am writing an application that will need to send a massive amount of emails to our students who will be selected from our database (each email will be personalized to the extent that will include ...
5
votes
4answers
1k views
Generate HTML e-mail with embedded images in Delphi
Anyone know of a good example of generating HTML e-mail with embedded images and an alternate text part? I need to generate some tabular reports in HTML and would like to embed logos and other images.
...
5
votes
5answers
765 views
Throttling speed of email sending process
Sorry the title is a bit crappy, I couldn't quite word it properly.
Edit: I should note this is a console c# app
I've prototyped out a system that works like so (this is rough pseudo-codeish):
var ...
4
votes
2answers
547 views
Difference between sending a MailMessage to an Exchange Server and sending to an SMTP server
I am trying to use the MailMessage class to construct e-mail messages that are transmitted to an SMTP server for delivery using the SmtpClient class.
My email is configured on outlook through an ...
4
votes
3answers
694 views
Can't send mail with SmtpClient
Can't send mail. Here is my C# source:
var to = "me@mycompany.com";
var subject = "test";
var body = "test mail";
var message = new MailMessage(from, to, subject, body);
var client = new ...
4
votes
4answers
1k views
How does my ASP.NET app get the SMTP settings automatically from web.config?
I noticed that we always just are like:
SmtpClient mSmtpClient = new SmtpClient();
// Send the mail message
mSmtpClient.Send(mMailMessage);
And the only place the credentials are set are in ...
4
votes
4answers
8k views
smtpclient “ failure sending mail”
here is my code
for(int i = 0; i < number ; i++)
{
MailAddress to = new MailAddress(iMail.to);
MailAddress from = new MailAddress(iMail.from, iMail.displayName);
string body = iMail.body;
string ...
4
votes
3answers
5k views
Sending mail throught http proxy
I'm trying to send emails from a system that connects to internet through a http proxy which is set in Internet Options.
i'm using SmtpClient.
Is there any way to send mails with SmtpClient through ...
4
votes
4answers
5k views
How do I send an email message from my C# application?
This is the code I wrote:
MailMessage mail = new MailMessage("test@gmail.com", "me@myurl.com");
mail.Subject = "This is a test!!";
mail.Body = "testing...";
...
3
votes
2answers
295 views
What are best practices for using SmtpClient, SendAsync and Dispose under .NET 4.0
I'm a bit perplexed on how to manage SmtpClient now that it is disposable, especially if I make calls using SendAsync. Presumably I should not call Dispose until SendAsync completes. But should I ...
3
votes
2answers
307 views
SmtpClient.SendAsync blocking my ASP.NET MVC Request
I have a Action that simple send a email:
[HttpPost, ActionName("Index")]
public ActionResult IndexPost(ContactForm contactForm)
{
if (ModelState.IsValid)
{
...
3
votes
2answers
202 views
How can i limit the number of mails sent using SmtpClient (System.Net.Mail) per minute in asp.net?
I've a requirement to send more than 20000 alert mails at one click and wanted to limit the number of mails sent per minute.
Is there any inbuilt/alternate way that can be used along with SmtpClient ...
3
votes
5answers
3k views
C# SMTP email sending code fails for Yahoo Mail but works fine for other servers, can anyone help?
I am using this code to send an SMTP email via the yahoo SMTP server, it is for a personal project I am writing.
using System.Net.Mail;
using System.Net;
SmtpClient theClient = new ...
3
votes
3answers
2k views
Troubleshooting “Mailbox unavailable. The server response was: Access denied - Invalid HELO name” when sending email with SmtpClient
I have been trying to send an email by C#. I have googled for various examples and have taken bits and pieces from each and form the standard code which everyone would most probably be using.
string ...
3
votes
2answers
546 views
How to suppress email validation when using SmtpClient and MailMessage
When sending out emails using the SmtpClient and a MailMessage (.net 3.5) the "To" email address(es) get validated prior to sending. I've got a big stack of email addresses which have a dot (.) before ...
3
votes
2answers
997 views
Getting a sent MailMessage into the “Sent Folder”
I'm sending MailMessages with an SmtpClient (being delivered successfully) using an Exchange Server but would like my sent emails to go to the Sent Folder of the email address I'm sending them from ...
3
votes
2answers
787 views
Sending mail using SmtpClient in .net
I am unable to send the mail using smtp client.
here is the code:
SmtpClient client=new SmtpClient("Host");
client.Credentials=new NetworkCredential("username", "password");
MailMessage mailMessage = ...
3
votes
1answer
899 views
SmtpClient (.NET) does not encode mail header in conformance with RFC 2047
I am using .NET SmtpClient to send e-mail where the subject might contain characters outside of the ASCII range. The RFC 2047 defines how e-mail text should be encoded when it contains special ...
3
votes
4answers
1k views
How to validate smtp credentials before sending mail in C#?
I need to validate the username and password set in SmtpClient object before sending mail.
Here is the code sample:
SmtpClient client=new SmtpClient(host);
client.Credentials=new ...
3
votes
4answers
783 views
Troubleshooting “The server committed a protocol violation” when sending mail with SmtpClient
I want to send a mail message with the SmtpClient class.
Here's the code I use:
SmtpClient smtpClient = new SmtpClient("Host",25);
NetworkCredential basicCredential =
new ...
3
votes
2answers
573 views
Send url with querystring with SmtpClient
Basic question here: I'm sending emails using the default SmtpClient of the .NET framework (3.5). The bodytype is HTML (IsBodyHtml = true) In the body I've added a url with two parameters in the ...
3
votes
9answers
8k views
How to enable SSL for SmtpClient in Web.config
Is there a way to set the EnableSSL from the web.config?
I could set this property in code, but that wouldn't work for the Simple Mail Web Event and other classes that uses the default Smtp Server. ...
2
votes
1answer
94 views
How do i send an email when i already have it as a string
Effectively i'm trying to send some template emails so that i can test a few components that handle reading from mailboxes.
I could just load up outlook and send a couple of emails but i'm looking to ...
2
votes
1answer
75 views
Two ways to send email via SmtpClient asynchronously, different results
Simple concept here. This is for a site being built using MVC 3 and Entity Framework 4. After a user registers on the site, an email is sent to their email address. I first implemented this using ...
2
votes
1answer
333 views
C# - Can't send mail in WIndows Azure via Gmail SMTP
This is my Web.config:
<system.net>
<mailSettings>
<smtp deliveryMethod="Network">
<network defaultCredentials="true" enableSsl="true" ...
2
votes
1answer
108 views
SMTP authentication with .NET fails
Hello i am having some problems sending mails thoug my site.
I keep getting the error
The SMTP server requires a secure connection or the client was not authenticated. The server response was: ...
2
votes
1answer
209 views
Email send via SmtpClient does not display images
The following code produces an email which the image is visible via webmail clients such as gmail but is not visible via thunderbird or outlook clients. A broken link is visible in these clients and ...
2
votes
1answer
64 views
Delayed receiving the email message using the SMTP server
I already deployed the Email Service I developed on the Chicago Server. Last Friday 11:30pm in Philippine time, I tested the sending and it run's properly, but when I checked my email there's no ...
2
votes
3answers
1k views
SmtpClient won't authenticate when inflated from web.config
When using the system.net/mail web.config settings to configure my SmtpClient, it fails to deliver emails, with an "protocol error" described best by Base64 encoding and authentication problems:
...
2
votes
3answers
403 views
How to set the attatchment file name with chinese characters in C# SmtpClient programming?
my code is as below:
ContentType ct = new ContentType();
ct.MediaType = MediaTypeNames.Application.Octet;
ct.Name = "这是一个很长的中文文件名希望能用它在附件名中.Doc";
Attachment attach = new Attachment(stream, ct);
...
2
votes
0answers
122 views
WCF + SmtpClient: only works in a Windows 2008 environment
Continuing the discussion started in another post: I used windows service to host a WCF mail sender. The service itself is quite simple: it uses a DataContract to get the basic ...
2
votes
0answers
162 views
Does System.Net.Mail.SmtpClient support CRAM-MD5 authentication?
Does System.Net.Mail.SmtpClient support CRAM-MD5 authentication, and if so, do I need to do anything to enable it?
MSDN appears to be silent on the matter.
2
votes
1answer
288 views
System.Net.Mail.SmtpClient cannot authenticate against a POP3 server, right?
One of our customer seems to have a very old email system, those that ask you to authenticate to the POP3 server before allowing you to send messages through the SMTP server. Regrettably, we have to ...
2
votes
2answers
3k views
send email C# using smtp server with username password authentification
I have a piece of code that sends email.. heres the code
This is not working for me. This a remote smtp service ... and i double checked that email web access works fine .. i can login using the gui, ...
2
votes
3answers
1k views
How to send receive mail from MS Exchange
How can I , from a custom c# application, create and send/receive mails from MS Exchange?
I am assuming this is not directly
possible with the standard framework
mail classes.
If I could ...
2
votes
1answer
897 views
Website (asp.net) to send emails via remote mail server, and not end up in spam folders
So, the setup is this, 2 separate servers...
Web server, has IIS7, MS SMTP
Mail server has MailEnable
On the web server, I'm sending an email from an ASP.Net app, via the mail server, and it is ...
2
votes
2answers
547 views
Decent SMTP client in C++
I'd like to have a decent SMTP client-side library in C++ with permissive license (LGPL, BSD, MIT-X, ...). It must have at least rfc821 and rfc2487 conformity and preferably rfc3207 conformity.
I ...
2
votes
4answers
2k views
Unable to send emails to external domain using SMTP
I am not able to send emails to external domain addresses like 'user.one@asdf.com' using the code below.
SmtpClient smtpClient = new SmtpClient(smtpMailServer);
smtpClient.UseDefaultCredentials = ...
2
votes
2answers
2k views
Properly disposing resources used by SmtpClient
I have a C# service that runs continuously with user credentials (i.e not as localsystem - I can't change this though I want to). For the most part the service seems to run ok, but ever so often it ...
2
votes
1answer
2k views
Optimal way to send mail with SmtpClient?
I'm looking for good performance when sending a lot of e-mails.
I have heard that the right way to do it is to open a connection send ~20 e-mails and close the connection. And do that over and over ...
2
votes
5answers
3k views
.NET SMTPClient - where is pending outgoing mail stored?
If I've queued up some email to be sent via the System.Net.Mail.SMTPClent, where can I find this mail? With the Windows SMTP Client, it's in the C:\inetpub\mailroot folder - is there a similar folder ...