我想使用默认电子邮件应用程序发送不带附件的简单电子邮件。

我知道可以使用Process.Start完成此操作,但是我无法使其正常工作。这是我到目前为止的内容:

string mailto = string.Format("mailto:{0}?Subject={1}&Body={2}", "[email protected]", "Subject of message", "This is a body of a message");
System.Diagnostics.Process.Start(mailto);


但是它只是打开带有预写文本的Outlook消息。我想直接发送此邮件,而无需用户手动单击“发送”按钮。我想念什么?

谢谢

最佳答案

您需要这样做:

            SmtpClient m_objSmtpServer = new SmtpClient();
            MailMessage objMail = new MailMessage();
            m_objSmtpServer.Host = "YOURHOSTNAME";
            m_objSmtpServer.Port = YOUR PORT NOS;

            objMail.From = new MailAddress(fromaddress);
            objMail.To.Add("TOADDRESS");

            objMail.Subject = subject;
            objMail.Body = description;
            m_objSmtpServer.Send(objMail);

关于c# - C#使用Process.Start发送电子邮件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26403861/

10-10 14:27