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
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
It is not true. Outlook Express has its own API. Please look at: http://msdn.microsoft.com/en-us/library/ms710250%28VS.85%29.aspx http://www.codeproject.com/KB/COM/Outlook_Express_Messages.aspx
Patrik
Related Q & A:
- Why can't I send pictures in Outlook Express?Best solution by Yahoo! Answers
- Cannot send emails in outlook express?Best solution by Yahoo! Answers
- How do you prevent your name from appearing in an email with Outlook Express (ver. 6?Best solution by Yahoo! Answers
- How do i send email on Outlook express?
- Can't send mail from Outlook Express?Best solution by Yahoo! Answers
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
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.