System.Net.Mail is a namespace of the .NET framework. It contains classes used to send electronic mail to a Simple Mail Transfer Protocol (SMTP) server for delivery.

learn more… | top users | synonyms

1
vote
1answer
43 views

When does the empty MailMessage constructor work?

We have an Asp.Net solution that's been in production for over 2 years using System.Net.Mail.MailMessage with the empty constructor: using (MailMessage _mailMessage = new MailMessage()) // Exception ...
1
vote
0answers
86 views

Timeout on high amount of messages with system.net.mail on internal exchange smtp server

I'm working on a program to send weekly reminders / updates to each sales employee at our company. About 120 per week, automated, in a short amount of time. This is an internal program, to internal ...
4
votes
2answers
94 views

E-mail with no content when using the System.Threading.ThreadPool

I'm experiencing a strange behavior trying to send email using Threading.ThreadPool. This has worked for over a year now but recently it has stated to intermittently send emails with no content. The ...
0
votes
1answer
426 views

Send SMTP email testing Microsoft Office 365 in .net

i have a mail account on the Exchange Online service. Now i'm trying to test if i am able to send mails to customers ( on varoius domains and on Microsoft Office 365) through c# application I tried ...
1
vote
1answer
50 views

Merge two EmailMessage in C#

What is the correct way to merge two EmailMessage. I tried following: mergedMessage.Body.Text = message1.Body.Text + message2.Body.Text But it is creating two html tags in the merged message, which ...
1
vote
1answer
175 views

System.Net.Mail reference does not exist

I have a problem creating application to send email. I already have one working as a Windows Forms Application and then decided to do the same from the empty project, because I need to make a ...
0
votes
2answers
240 views

C# Sending a large number of emails using System.Net.Mail

We have an ASP.NET MVC application that sends a number of reports via e-mail to clients each month. Each e-mail attaches a monthly statement. Currently we have around 70 clients but this will ...
-2
votes
2answers
123 views

How do I add another email address in my C#?

I would like to add an extra email address for messages to be sent/forwarded to when the email form submit button is clicked, whats the easiest way to do this? public partial class Contact : ...
0
votes
1answer
58 views

MVC3 e-mail to own address

I'm trying to send an email to myself after someone has posted a question. Although I'm receiving an email, it isn't what I need: the from mailaddress is my own instead of the person who asked the ...
0
votes
0answers
30 views

System.Net.Mail SendAsync Unable to Relay NullReferenceException

Setting up my System.Net.Mail object, and calling .Send(msg), it works as expected. When I send to a non-domain address, it returns an SMTPExcpetion with an inner exception indicating Unable to ...
0
votes
2answers
352 views

Sending Email In C# MVC..On Local host..not working?

Im trying to send out a basic email, using C# mvc...for some reason it wont work.. i tried many different solutions, but keep getting same error in browser that says" operation has timed ...
0
votes
2answers
88 views

lotus notes start session

I'm looking for a way to start Lotus Notes and control its utilisation from a vb.net project. By controlling I mean litle things like getting the window position, closing active document and other ...
0
votes
1answer
74 views

Does smtpfailedrecipientsexception work for CC and BCC

I'm trying to get my head round the System.Net.Mail class but I'm having trouble finding decent documentation. First query - Say I have an email with a CC and a BCC email, do I need to catch ...
0
votes
0answers
64 views

How to resend email using SendAsync() in asp.net

I am using SendAsync to send an email. The reason I'm using async is simply to free up the UI rather than send multiple emails. I have created the following callback event: static void ...
1
vote
1answer
71 views

Is there a way to catch exceptions using System.Net.Mail.SendAsync()

I have a couple of methods already to send an email message syncronously. If an email fails, I use this fairly standard code: static void CheckExceptionAndResend(SmtpFailedRecipientsException ...
0
votes
1answer
119 views

System.FormatException: The specified e-mail address is currently not supported

I receive this error when my code executes from my Windows 2003 server, however from my Windows 7 dev machine the mail process works flawlessly every time. Project is configured for 2.0 framework. Is ...
1
vote
2answers
74 views

Extension methods for MailMessage Bcc AddRange

When adding multiple recipients to a MailMessage.BCC there is no option for AddRange(). Only MailMessage.Bcc.Add(); Can this functionality be changed by an extension method? I'm a little lost at this ...
1
vote
0answers
126 views

How to Send mail from visual basic 2010 professional

I want to send a mail using gmail id, my code is as here under, but its occurred error...please help me out of this issue. Imports System.Net Imports System.Net.Mail Public Class Form1 Private Sub ...
0
votes
1answer
96 views

Mail message not sending. Program not responding

I have created a mail program that will send the email to my account. I have established System.Net, System.Net.Mail. I works on some computers (my main one), but whenever I try and do another ...
0
votes
2answers
151 views

How to store a system.net.mail password in the database

I need to store email passwords which will be used with system.net.mail. These need to be retrieved and sent as plain text but I don't want to store them as plain text. This isn't really about ...
0
votes
1answer
423 views

System .NET Mail html not formatted right inOutlook

I have code which uses system.net.mail to send html formatted emails. They show up as desired in web-based email services (GMail,Hotmail, etc) but in Outlook the html, specifically the image, doesn't ...
1
vote
3answers
274 views

C# asp.net System.Net.Mail outgoing emails not recieved

I'm using System.Net.Mail and I'm trying to send an email (to myself actually) to some address. I belive I'm setting it up correctly and I'm getting no exceptions thrown but the mail isn't delivered?! ...
0
votes
0answers
378 views

Catching 550 5.1.1 RESOLVER.ADR.RecipNotFound errors when sending email via System.Net.Mail

I am using Sytem.Net.Mail to send email via an Exchange server (on a different machine) through a web application in C#. (Note that each customer will have the ability to set the smtp configuration, ...
2
votes
1answer
146 views

Emailing a log4net log as a System.Net.Mail.Attachment throws IOException (process locked)

I wanted to send the current log4net log as an email attachment using System.Net.Mail.Attachment but when I pass in the file path an IOException is thrown. Attachment mailAttachment = new ...
1
vote
2answers
233 views

HTML4.0 SSRS report is squashed in Outlook when sent with System.Net.Mail. Is it fixable?

I'm using the SSRS web service to generate HTML4.0 format reports and then I'm trying to send them with System.Net.Mail (I know SSRS has built in report scheduling, but we have a requirement to handle ...
3
votes
1answer
182 views

Send spreadsheet as email attachment using SpreadsheetGear

A client has asked me to enhance one of their apps in order to send out an email containing an excel spreadsheet. They happened to have an old copy of SpreadsheetGear (2009) lying around, so I thought ...
0
votes
1answer
194 views

Design for a mass e-mailer in an ASP.NET page — is just a foreach loop and SmtpClient sufficient?

We are interested in implementing something into our ASP.NET web application that will send out an e-mail to addresses pulled from SQL Server 2008. This doesn't seem like it would be that difficult. ...
1
vote
3answers
473 views

System.Net.Mail using Gmail Smtp from address is always mine

I think that Gmail is rewriting the from address and using the account that is provided in the network credentials for the from. MailMessage message = new MailMessage(); message.From = new ...
1
vote
2answers
339 views

Apostrophe character in an html email not showing

I am using System.Net.Mail and I am reading html into the body of email. Unfortunately the apostrophe character ' is shown as a question mark with a black background. I have tried to replace the ...
0
votes
4answers
206 views

Sending emails that requires a secure connection

REMAKING QUESTION This code doesn't work The error is: The remote certificate is invalid according to the validation procedure. var client = new SmtpClient("smtp.domain.com.br", 25000) { ...
3
votes
1answer
446 views

Why doesn't the Bcc message header on an email work when using SmtpDeliveryMethod.SpecifiedPickupDirectory?

We have an email job that uses System.Net.Mail Emails get sent to a folder, and a job runs to copy the files to the Pickup folder on our Exchange server at a specified time of day. A copy of the ...
1
vote
1answer
768 views

Edit HTML Email template at run time in .net code

I below code is to send email by reading the template html, and it works fine. But now my question is how to pass Salutation customerName from my .net code to the template at run time. StringBuilder ...
2
votes
1answer
133 views

Can't send email with plus symbol (SmtpClient.Send() method from System.Net.Mail)

Can the SmtpClient.Send() method from System.Net.Mail really not send to email addresses that have plus symbols in them? I am sending to a list of email addresses and they all get sent except the ones ...
0
votes
1answer
136 views

ASP.NET MVC Leave a Copy of Email on Server

I have a ASP.NET MVC 4 project with EF. I' m using System.Net.Mail to send emails programmatically. MailMessage msg = new MailMessage(); msg.From = new MailAddress("JohnDoe@gmail.com", "John Doe"); ...
0
votes
1answer
199 views

Sending Mail to 2 mail id in asp.net?

I have a user registration Form. If a new User register their account in that account. I need to send a message a new user has been registered to my company mail-id and also client mail-id. Now i do ...
1
vote
1answer
276 views

Error sending mail which states my IP has been blacklisted

I am continously sending mails from different addresses, and I haven't had any problems so far. Now I am sending a new mail (just ONE email), and in the client.Send(message) line it throws an ...
0
votes
1answer
751 views

Odd error when attaching files with System.Net.Mail

I have an application that occasionally sends out an e-mail with three attachments. One attachment is the file initially sent to my mailbox by a user, so I'm replying with the same file they sent me. ...
1
vote
1answer
3k views

System.Net.Mail.SmtpException : SMTP command timeout - closing connection

I am having an error that is occurring sporadically. When I encounter this error, if I try again, the e-mail will send. I cannot reliably reproduce the error, but it is hapening frequently enough to ...
0
votes
2answers
307 views

Email Templating Basics, with C#

I want to create my own email template without having to use third party software,I would just like to clear up some basics for my self :) Firstly, do all email templates come down to pretty much ...
2
votes
5answers
989 views

Trouble sending email from .net program

I have a simple .net web application written in C# with Framework 2.0. The only thing it does is call this function: static void SendMail(string strSubject, string strBody, string strFrom, ...
1
vote
1answer
615 views

System.net.mail attachment gets .xml file extension

I have to mail several files to an e-mail address. The files needs to have .tcx file extension. These are in fact xml files (Garmin bicycle logs). Apparently when the receiver gets the email, the ...
1
vote
1answer
239 views

Global.cs Error Handling using System.Net.Mail

I am using the Application_Error in the Global class to handle 404s. Once a 404 is caught I send an email for the purpose of logging it. To do this I call a static method to write the error. ...
4
votes
2answers
535 views

Cyrillic subject encoding in c# mails

I`m trying to send e-mail via c# and use the following code: public static bool SendSMTPMail(string smtphost, int smtpport, string smtplogin, string smtppassword, string from, string to, string ...
2
votes
1answer
461 views

Random “Index was outside the bounds of the array” as an SmtpException

I'm getting an exception randomly with the Send method shown below. The exception I'm getting is: Exception information: Exception type: System.Net.Mail.SmtpException Exception message: ...
2
votes
2answers
855 views

new MailMessage() Throws 'The handle is invalid'

Why does this code: MailMessage mm = new MailMessage(); Throw this exception: System.Security.Cryptography.CryptographicException was caught Message=The handle is invalid. Source=mscorlib ...
1
vote
1answer
2k views

Sending Email to multiple recipients in VB.NET

I'd like to ask if sending email to multiple recipients in vb.net is possible? What I mean here is I want to create a program that sends email to multiple recipients, unlike the usual program which ...
0
votes
1answer
1k views

sending big attachments using C# ASP.NET 3.5 System.Net.Mail

I have been trying to send a big attachment (9 MB) using C# ASP.NET 3.5 System.Net.Mail. I read that .NET 4.0 had a bug which doesn't allow this, but .NET 3.5 is fine. .NET 4.0 Fails When sending ...
0
votes
2answers
3k views

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

I am trying to send SMTP email from my vb.net form application. When applying this code, I get the error below. What am I doing wrong? Code: Imports System.Net.Mail Public Class Form1 Private ...
0
votes
2answers
889 views

how to email a dynamically created htmltable - vb.net

I have created an htmlTable and I want to email it: Dim MyRow As New HtmlTableRow Dim cellCost, cellDisplayName, cellMoreInfo As New HtmlTableCell Dim tableAttributes As New HtmlTable ...
0
votes
5answers
3k views

Sending Email Using System.Net.Mail in C# [duplicate]

Possible Duplicate: Send email using System.Net.Mail through gmail. (C#) I am using this code to send email using C# .Net but it generates error at run-time. The Code is: MailMessage ...

1 2 3