Hey guys i'm trying to figure out how to open a new message window from outlook when i click a button on my form any help greatly aprreciated thanks.
penguin22 0 Light Poster
Recommended Answers
Jump to PostYou can also use the mailto: extension to open up the default email client:
private void button1_Click(object sender, EventArgs e) { string to = "test@gmail.com; test2@gmail.com"; string subject = "test subject"; string body = "test body"; MailTo(to, subject, body); } public static void MailTo(string To, string Subject, …
All 4 Replies
jatin24 21 Junior Poster in Training
sknake 1,622 Senior Poster Featured Poster
mishra1213 -2 Newbie Poster
nmaillet commented: Please don't bump a 3 year old thread. Start your own if you have a question. -2
Ketsuekiame 860 Master Poster Featured Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.