I'm trying to launch the email app from the user click some hyper link, I want to add also attachment, the only thing that worked was this link enter link description here, but now I don't want to specify the MailMessage.From field, I want it to be like when you click on mailto: link, it opens your deafault account or ask you to login, etc.., but whenever I try to set the mailMessage.From = new MailAddress("");, it throws exception, it should be an email
to get my app launch the mail with attachment, now how can I remove the field "From" and let the user use his mail or something like when you use mailto: if I remove this line, it throws exception
mailMessage.From = new MailAddress();