Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
4answers
2k views

Why does the MailDefinition class require a System.Web.UI.Control?

When creating a MailMessage object by calling the "CreateMailMessage" method on the MailDefinition class, the third parameter is an object of type System.Web.UI.Control. MailDefinition mail = new ...
5
votes
3answers
54 views

Erroneous email receiver display when using German umlauts and a comma in name

Using the MailMessage class in .NET 4, I found an issue today that I'm unable to resolve so far. Please see the following code: using (var message = new MailMessage()) { message.From = new ...
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
3answers
178 views

Code analysis complains I'm not disposing objects. What is wrong here?

Consider this code private MailMessage GetMailMessageFromMailItem(Data.SystemX.MailItem mailItem) { var msg = new MailMessage(); foreach (var recipient in ...
4
votes
2answers
422 views

Building a Email Sender Service

I have a couple of web applications which all utilize sending emails whether it be by contact form, or some kind of notification updates etc. The problem I have found is that there isn't really any ...
4
votes
1answer
162 views

Is it okay to pass a System.Net.Mail.MailMessage object around on a delegate in C#?

I have made a small SmtpSender class which handles the sending of an Smtp MailMessage object. When the message has been sent or failed to send I raise a delegate that contains a 'response' object ...
4
votes
1answer
2k views

Cancel outlook meeting requests via MailMessage in C#

I'm creating an application using the ASP.NET MVC 1 framework in C#, where I have users that register for events. Upon registering, I create an outlook meeting request public string ...
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
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
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
3answers
753 views

Is there a way to serialize a .Net MailMessage object

I am trying to write a proc that will take in as a parameter a MailMessage object, and the split it apart to store the subject, body, to addresses, from address, and attachments (the hard part) in a ...
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
6answers
3k views

save System.Net.mail.MailMessage as .msg file

I am building an application where i am obligated to create a MailMessage (System.Net.mail.MailMessage) and save it on the disk as .msg extention not .eml Below is the method i'm using to save a ...
3
votes
3answers
3k views

Embedding background images in an e-mail

I'm trying to use an embedded image in an e-mail as the background image, i've got the following code to embed it: LinkedResource backgroundLink = new ...
3
votes
2answers
2k views

Serialize a FileStream for transport

See also this question: http://stackoverflow.com/questions/447071/can-i-pass-a-system-net-mailmessage-to-a-wcf-service I'd like to add attachments to the mail being sent. Attachments are either files ...
2
votes
2answers
166 views

MVCMailer SendAsync and deleting attachments

I'm having trouble getting MVCMailer to delete attachments after sending an email asynchronously. I can't figure out what to do to dispose of the message to free up processes attached to the message ...
2
votes
1answer
121 views

getting the path of a MailMessage attachment

I'm using a MailMessage Queue and upon exiting the program I want to save the content of the queue. I created a temp list and pass the contents of the queue to that. After that use a simple ...
2
votes
1answer
348 views

C# MailMessage AlternateViews displaying HTML tags

I am using MailMessage in C# to send out a HTML email. The code I am using is as follows MailMessage msg = new MailMessage(); AlternateView htmlView = ...
2
votes
2answers
505 views

How can I send MailMessages using multiple threads?

I hope you guys will bear with me for my total lack of direction in case of Threading. I have to implement a Mail Queue Processing System where I have to send emails queued up in a database through a ...
2
votes
2answers
568 views

file attachment form c#

im creating a web form that requires a user to uplaod a file in doc,docxorpdf format on submit the form gets posted to an email address along with the attached file, ihave successfully implemented the ...
2
votes
4answers
1k views

MailMessage sent string as body without newline in outlook

HI, I am trying to send a simple notification using system.net.mail.mailmessage. I just pass the string as the message body. But problem is even though multi-line message been send have the correct ...
2
votes
4answers
1k views

HTML email not displaying correctly

i have a strange problem with sending HTML mail in c#. Basically i am trying to email myself the weather every morning and I begin by downloading the weather in HTML markup from an ftp site. After ...
2
votes
2answers
716 views

Sending to multiple Email addresses but displaying only one C#

I am using the SmtpClient in C# and I will be sending to potentially 100s of email addresses. I don't want to have to loop through each one and send them an individual email. I know it is possible ...
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
5answers
785 views

Convert MIME tree to MailMessage

I'm writing a a C# program that processes and forwards email messages. I have a POP3 library and a MIME parser, and I need to copy the MIME tree into a System.Net.Mail.MailMessage. What is the best ...
2
votes
1answer
3k views

Sending an email with the header return-path using windows virtual mail server

I'm trying to send an email message using the .NET MailMessage class which can also have the return-path header added so that any bounces come back to a different email address. Code is below: ...
1
vote
0answers
110 views

Meeting invite with attachment not recognized in Outlook 2010 / Office 365

We have a .NET application that manually generates meeting invites to send to users. The process we use is as follows: Create a System.Net.Mail.MailMessage and set the usual fields ...
1
vote
4answers
45 views

Why does System.Net.Mail.MailMessage implement IDisposable

So I've been using System.Net.Mail.MailMessage objects for sending e-mail via SmtpClient for a while now. I noticed somewhere that MailMessage implements IDisposable, so I always use it within a using ...
1
vote
3answers
49 views

Using MailMessage Class

i'm using MailMessage class to send emails MailMessage msg = new MailMessage(fromAddr, toAddr); when i create the new MailMessage object it automatically gets the host using the fromAddr.for an ...
1
vote
5answers
128 views

MailMessage c# - How to make it HTML and add images etc?

string to = "email@hotmail.co.uk"; string body = "Test"; SmtpClient SMTPServer = new SmtpClient("127.0.0.1"); MailMessage mailObj = new MailMessage(urEmail, to, subject, body); ...
1
vote
3answers
136 views

How do I send `MailMessage` that was stored in a `SpecifiedPickupDirectory`

I am storing Emails in a Directory, like the following. How do I go about, programatically, sending those at a later time, say an event of some sorts smtpClient.PickupDirectoryLocation = ...
1
vote
4answers
188 views

Line breaks ignored when sending mail as plain text

I have a text like " Hi, \r\n this is test \r\n Thanks" I am sending the mail using MailMessage class. I have set the "IsBodyHtml" property to false. The issue is that I am receiving mails without ...
1
vote
1answer
160 views

SMTP.Send() returns after (or during) an email sending session?

This vb.net code seems to work ONLY if run... and I keep the program open for an additional 5-10 secs AFTER I see the "email sent" message. If I instead wait 0-1 secs, and then close the prg, the ...
1
vote
1answer
760 views

MailMessage Attachment filename with accents

I'm trying to send HTML e-mails with attached Excel filenames. It all worked well until I neded to send messages whose attachment name contains accented letters :-( Every workaround I've tried failed ...
1
vote
1answer
511 views

Sending Mails with attachment in C#

I need to send a mail including the exception details (Yellow Screen Of Death) as attachment. I could get the YSOD as follows: string YSODmarkup = lastErrorWrapper.GetHtmlErrorMessage(); if ...
1
vote
3answers
458 views

MailMessage ASP.NET Wrong from email?

I have an event for a button, that simply emails me whatever the user entered. I get the message fine....subject....message. But the from email part is just showing from myself (same as the one it is ...
1
vote
1answer
350 views

ASP.NET - sending mail form different domain than SMTP credentials?

When sending email using MailClient, is it possible to have the .From property be for an email of a different domain than the credentials passed to the SMTP server? E.g., my credentials passed in are ...
1
vote
2answers
425 views

Using html page as mail body in asp.net

I have an email template in a file called template.html, how can i use it as mail body in asp.net?
1
vote
2answers
1k views

SMTP Authentication with config file's MailSettings

I'm storing my MailSettings in a web.config, however when I send the message, my SMTP server reports back that I need to use authentication. I've got my username/password in the config file, but it ...
1
vote
1answer
319 views

How can I attach a PDF file stored as binary object in SQL Server to an email?

I'd like to attach a PDF file stored as binary object in SQL Server to an email but without creating a (temporary) file on disk. I already have the first step to pull out the PDF file from the binary ...
1
vote
1answer
480 views

.NET: Problems creating email attachment from MemoryStream

I'm using the following method to create an attachment from a MemoryStream: public void AddAttachment(Stream stream, string filename, string mimeType) { byte[] buffer = ((MemoryStream) ...
1
vote
3answers
241 views

How to pull content of an e-mail page/template into a MailMessage Body in .NET

I have an e-mail template which is just a plain, static HTML page. I need to get that page into the Body of a MailMessage. Normally what I would do is just create a StringBuilder and append the ...
1
vote
2answers
146 views

changed MailMessage properties, now it's hanging on client.Send

I'm using System.Net.Mail.MailMessage to send emails from my C# Windows app. I originally had this: MailMessage mail = new MailMessage("from@address.com", "to@address.com"); etc which worked fine ...
1
vote
3answers
873 views

.NET MailMessage and SMTPClient Getting Tagged as Spam?

I'm preparing basic HTML email and have used a basic HTML template with proper HEAD and BODY tags, but for some reason, my users are having trouble getting emails from me. I'm using ASP.NET ...
1
vote
1answer
1k views

Can I pass a System.Net.MailMessage to a WCF service?

I'd like to setup a WCF service to send emails. The System.Net.MailMessage doesn't seem to be serializable, and cannot be passed in a [DataContract] The error I receive is Type ...
0
votes
2answers
45 views

C# smtp configuration in system.net.mail

I have a small WinForms application that sends notification emails. It works fine with outlook clients but bombs if a gmail/yahoo/windowslive address is entered. I've seen many posts using ...
0
votes
0answers
16 views

Embed Documents using LinkedResources for MailMessage

I'm using the following code to embed images into my MailMessage. What I'm trying to do is embed documents (pdf or docx) into the email. I've tried hyperlink with a link to href="cdi:myDoc.pdf" but ...
0
votes
5answers
34 views

MailMessage won't send to more than 2 recipients?

In ASP.NET I am sending a MailMessage but it won't go through. The code I am using is message.To.Add(email1 + ", " + email2 + ", " + email3); When I do this I never receive my mail. However if I ...
0
votes
0answers
61 views

mailmessage c# keeps IIS worker process open on the file being sent

EDIT: I isolated the problem to being a mail attachment, not the zip library that's keeping my worker process open...so this post has been modifie.d I'm using the DotNetzip library in its simplest ...
0
votes
2answers
59 views

Change colour of emails being sent

In Outlook if you go to... Tools > Organise > Using Colors (Tab) ...you can change the colour in your inbox of emails that meet conditions (sent from, sent to etc). Is there a way to do this ...

1 2