---
title: "Sent email from the program"  
description: "Sent email from the program"  
author: "Mark Devid"  
published: 2014-04-10  
updated: 2014-04-11  
canonical: https://www.mindstick.com/forum/2013/sent-email-from-the-program  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# Sent email from the program

I [already](https://yourviews.mindstick.com/view/88453/the-hidden-ways-ai-is-already-controlling-your-daily-life) created the [application](https://www.mindstick.com/articles/12824/calculator-application-in-android) in [windows](https://www.mindstick.com/articles/311752/how-to-install-and-use-the-google-wifi-software-on-a-windows-or-mac-computer) forms c# which ready to be use by another user in another computer, but i am aware there will be an error occurred when run my [program](https://www.mindstick.com/blog/12337/scaling-up-your-mentorship-program) (because i didn't have [enough](https://answers.mindstick.com/qa/48601/who-is-the-writer-of-the-one-life-is-not-enough) time to check everything), so I decided to let users find the bug and [report](https://www.mindstick.com/forum/334/crystal-report) to me through email.

I have a [button](https://www.mindstick.com/articles/63/how-to-add-button-in-datagridview-in-csharp-dot-net) "Report a [Problem](https://yourviews.mindstick.com/view/81399/tackling-the-problem-of-unemployment-during-corona-pandemic)", but how do i when users click that button, it will open the [Microsoft](https://www.mindstick.com/articles/12301/microsoft-is-trying-to-kill-passwords) [Outlook](https://www.mindstick.com/blog/135055/how-to-change-your-account-password-in-outlook-com-toll-free-number-1-844-832-5538) and automatically filled up the Received Email or "To" with my own email?

## Replies

### Reply by Pravesh Singh

Hi Mark,\

I would suggest:

Process.Start("mailto:your@emailaddress.com");

This will prompt Windows to create a new mail using the default email provider (which will most likely be Microsoft Outlook if it's installed).

To use this method, please add:

using System.Diagnostics;

to the top of your code file.


---

Original Source: https://www.mindstick.com/forum/2013/sent-email-from-the-program

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
