Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I save MailMessage object to the disk? The MailMessage object does not expose any Save() methods.

I dont have a problem if it saves in any format, *.eml or *.msg. Any idea how to do this?

share|improve this question

1 Answer

up vote 44 down vote accepted

For simplicity, I'll just quote an explanation from a Connect item:

You can actually configure the SmtpClient to send emails to the file system instead of the network. You can do this programmatically using the following code:

SmtpClient client = new SmtpClient("mysmtphost");
client.DeliveryMethod = SmtpDeliveryMethod.SpecifiedPickupDirectory;
client.PickupDirectoryLocation = @"C:\somedirectory";
client.Send(message);

You can also set this up in your application configuration file like this:

 <configuration>
     <system.net>
         <mailSettings>
             <smtp deliveryMethod="SpecifiedPickupDirectory">
                 <specifiedPickupDirectory pickupDirectoryLocation="C:\somedirectory" />
             </smtp>
         </mailSettings>
     </system.net>
 </configuration>

After sending the email, you should see email files get added to the directory you specified. You can then have a separate process send out the email messages in batch mode.

You should be able to use the empty constructor instead of the one listed, as it won't be sending it anyway.

share|improve this answer
1  
I've found that I also needed to add the <network host="...", etc. in addition to what Ryan provided. – Steven Rogers Jul 7 '11 at 20:42
2  
Is there any way to change the file name of the output .eml file? I would prefer it not to look like the following: f80f4695-551c-47d7-8879-40ad89707b23.eml Thanks! – buzzzzjay Oct 3 '11 at 19:07
1  
Although an old post, I would like to add an answer to the last question from @buzzzzjay: have a look here: link – Corné Hogerheijde Jan 10 at 13:22
Thanks for the link, that is really helpful! – buzzzzjay Jan 17 at 21:33

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.