I want urgently help in HTML

Discussion in 'HTML & Website Design' started by Mohammad Asif Ali Zaman, Jun 12, 2013.

  1. #1
    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
     
    Mohammad Asif Ali Zaman, Jun 12, 2013 IP
  2. jamjar919

    jamjar919 Well-Known Member

    Messages:
    332
    Likes Received:
    7
    Best Answers:
    5
    Trophy Points:
    180
    #2
    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".
     
    jamjar919, Jun 12, 2013 IP
  3. Mohammad Asif Ali Zaman

    Mohammad Asif Ali Zaman Member

    Messages:
    86
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    28
    #3
    I want when user hit the email then my html page itself auto place the email body section
     
    Mohammad Asif Ali Zaman, Jun 12, 2013 IP
  4. jamjar919

    jamjar919 Well-Known Member

    Messages:
    332
    Likes Received:
    7
    Best Answers:
    5
    Trophy Points:
    180
    #4

    That's not possible. Because it could be used for exploits, it won't work.
     
    jamjar919, Jun 12, 2013 IP
    malky66 likes this.
  5. Mohammad Asif Ali Zaman

    Mohammad Asif Ali Zaman Member

    Messages:
    86
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    28
    #5
    I want email marketing
     
    Mohammad Asif Ali Zaman, Jun 12, 2013 IP
  6. ActiveFrost

    ActiveFrost Notable Member

    Messages:
    2,072
    Likes Received:
    63
    Best Answers:
    3
    Trophy Points:
    245
    #6
    How is your question related to e-mail marketing?
     
    ActiveFrost, Jun 12, 2013 IP
  7. Mohammad Asif Ali Zaman

    Mohammad Asif Ali Zaman Member

    Messages:
    86
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    28
    #7
    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
     
    Mohammad Asif Ali Zaman, Jun 12, 2013 IP
  8. ActiveFrost

    ActiveFrost Notable Member

    Messages:
    2,072
    Likes Received:
    63
    Best Answers:
    3
    Trophy Points:
    245
    #8
    It is not possible.
     
    ActiveFrost, Jun 12, 2013 IP
  9. Deepak Chaubey

    Deepak Chaubey Member

    Messages:
    28
    Likes Received:
    0
    Best Answers:
    1
    Trophy Points:
    31
    #9
    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:
     
    Deepak Chaubey, Jun 12, 2013 IP
  10. aidanriley629

    aidanriley629 Banned

    Messages:
    429
    Likes Received:
    23
    Best Answers:
    3
    Trophy Points:
    175
    #10
    Add me on Skype, I'm available to help anytime. (found in my profile)
     
    aidanriley629, Jun 12, 2013 IP
    dontstop likes this.