I have the following code snippet: It is opens the outlook with mail subject, but failed to attach files. Actually i am trying attach two files in MVC4 view, thats why MailAttachment[0].
<a href="mailto:?subject=@(Model.MailSubject)&Attachment=@(Model.MailAttachment[0])">
<img src="~/Images/mail.png" />
</a>
I don't required to call any action methods, so that am trying to open the outlook in view itself.