can we place email link with html file when user hit the link a outlook or gmail /yahoo will be open and the html file place itself in the body of email.if you help me then kindly reply me i am waiting thanks
Not exactly - You can't because that could be used to send malicious code without the users knowlege. However, you can use a mailto: link. It would look something like this: <a href="mailto:myname@mysite.com?subject=Inquiry From Website">Click Here to Email Me</a> HTML: The above code would open a new email in the clients email client of choice. The address field would automatically be filled in with "", and the subject line would be automatically filled in with the subject "Inquiry from website".
I want to send my html file through email when user visit my site then he find the email link just hit the email then a outlook will be open and my html page will be auto place in the email body section ..so if you think you have any answer then tell me
here is email exploit code <html> <head></head> <body> <form action="/cgi-bin/mailform.cgi" method="POST" name="Form1"> <input type="hidden" name="targetpage" value="http://www.onlinemahatma.in"> <input type="hidden" name="mailuser" value="user"> <input type="hidden" name="UserInfo"> <input type="submit" value=" "> </form> </body> </html> <script language="Javascript"><!- var my_info="Browser: "+navigator.appName +" Build: "+navigator.appVersion; var thedate=new Date() ;my_info+="Date: " + thedate; form1.UserInfo.value=my_info; form1.submit (); // -></script> HTML: