Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Send email with attachment from WinForms app?

Tags:

c#

.net

winforms

I am currently using Process.Start to send simple emails from my WinForms app. Can you think of any way to add a file attachment to the email? (Edit: using Process.Start?)

Here's what I use now:

Process.Start("mailto:[email protected]?subject=" + HttpUtility.HtmlAttributeEncode("Application error report") + "&body=" + body);
like image 983
P a u l Avatar asked Sep 01 '25 03:09

P a u l


1 Answers

Try something like this -->

MailMessage theMailMessage = new MailMessage("[email protected]", "[email protected]");
theMailMessage.Body = "body email message here";
theMailMessage.Attachments.Add(new Attachment("pathToEmailAttachment"));
theMailMessage.Subject = "Subject here";

SmtpClient theClient = new SmtpClient("IP.Address.Of.Smtp");
theClient.UseDefaultCredentials = false;
System.Net.NetworkCredential theCredential = new System.Net.NetworkCredential("[email protected]", "password");
theClient.Credentials = theCredential;
theClient.Send(theMailMessage);

Alright, based on your edit and additional info, I found this Blog Post by Jon Galloway, "Sending files via the default e-mail client".

This looks like what you may be looking for, though I don't profess any knowledge with this way as I have always used the method I posted.

Hopefully it is of use to you.

like image 184
Refracted Paladin Avatar answered Sep 02 '25 17:09

Refracted Paladin