Why can't I send email in my Outlook express?

Send email from Outlook Express in C#

  • How do I open Outlook Express in C# 2008? How to attach a file from my application to Outlook?

  • Answer:

    Outlook Express has been obsolete for so long I can't even remember the last time I actually saw anyone using it... It's a security nightmare, and has been removed from Windows ages ago AFAIK, Outlook Express doesn't have an API to manipulate it programmatically (but Outlook does). As others have suggested in comments, you should probably send the mail directly from your C# code, without involving Outlook Express. Check out the http://msdn.microsoft.com/en-us/library/system.net.mail.aspx namespace in MSDN, it contains everything you might need (including code samples)

nithi at Stack Overflow Visit the source

Was this solution helpful to you?

Other answers

As others have pointed out you better use the System.Net.Mail if you simply want to send a mail. If for whatever reason you want to send mails using Outlook you'll have to use Office interop. Something like this: using Outlook = Microsoft.Office.Interop.Outlook; Outlook.Application oApp = new Outlook.Application(); Outlook.MailItem email = (Outlook.MailItem)(oApp.CreateItem(Outlook.OlItemType.olMailItem)); email.Recipients.Add("[email protected]"); email.Subject = "Subject"; email.Body = "Message"; ((Outlook.MailItem)email).Send();

Mez

If you are looking to compose an email using the user's default e-mail client, try this: using System; using System.Diagnostics; namespace RunMailTo { class Program { static void Main(string[] args) { Process.Start("mailto://[email protected]"); } } } You can add additional parameters to the mailto: URL to set the subject, body, etc. See http://msdn.microsoft.com/en-us/library/aa767737%28VS.85%29.aspx for more information.

GBegen

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.