I can send Email directly or automatically without a problem in ASP.Net. But I want to launch the local email client (say Outlook or whatever email client) instead with a file attachment for the user to SEND the email MANUALLY .. how do I do that?
Dim myMail As New MailMessage()
myMail.From = "me@who.com"
myMail.To = "mymy@yoyo.com"
myMail.Subject = "Test Message"
myMail.Priority = MailPriority.Low
myMail.BodyFormat = MailFormat.Html
myMail.Body = "Test"
SmtpMail.SmtpServer = "localhost"
SmtpMail.Send(myMail)
Instead of SmtpMail.Send ..... is there something else ... or is that a totally different approach?
Dim myMail As New MailMessage()
myMail.From = "me@who.com"
myMail.To = "mymy@yoyo.com"
myMail.Subject = "Test Message"
myMail.Priority = MailPriority.Low
myMail.BodyFormat = MailFormat.Html
myMail.Body = "Test"
SmtpMail.SmtpServer = "localhost"
SmtpMail.Send(myMail)
Instead of SmtpMail.Send ..... is there something else ... or is that a totally different approach?