As we all know that the mailto attribute using in the <A> tag Example: <a href="mailo:abc@domain.com">test</A> And including the subject in the mail message is as follows. Example: <a href="mailo:abc@domain.com?subject=test subject">test</A> The following example opens a Email dialog, where the subject and body of the email are filled with contents we have specified in the mailto attribute. In this we have to specify the recipients emails id's when the Email dialog opens. Example: <A href="mailto:?subject=Error has occurred &body=Hi, This error has occurred during the processing of X operation in the application">Contact Admin</A> The following example opens a Email dialog with the two email id's in the TO, one email ID in CC and one email Id in the BCC email ID entry section, where the subject and body of the email are filled with contents we have specified in the mailto attribute. In this case the emails are sent to all the recipients specified in the TO,CC and BCC email id entry section. Example: <a href="mailto:abc@domain.com, abcd@domain.com?subject=Report viewer error&cc=xyz@domain.com&bcc=clientid@domain.com">Contact Admin</A> |