Using the MailTo: how can I include the page in body of the email

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default Using the MailTo: how can I include the page in body of the email

    how can i include the current page in the body of the
    email. I was only to put text.

    Syntax:
    <html>
    <body>
    <input type ="Button" onclick= "eman()">


    <SCRIPT LANGUAGE=JAVASCRIPT>
    function eman()


    {
    var e_add= 'RiadeAsleh@hotmail.com';
    var subj= 'hellow';
    var e_body= 'Found some information on '
    var about= document.title + " at the following
    address";
    var elink= " " + document.location ;
    window.location="mailto:"+e_add+"?
    subject="+subj+"&body="+e_body+about+elink;
    alert("ADF");
    }
    </SCRIPT>


    </body>

    </html>



    Sincerely yours


    Mike John

    Mike John Guest

  2. Similar Questions and Discussions

    1. Creating HTML Email Body using MailTo tag
      I'm trying to initiate an email with predetermined Subject and HTML formatted body that will allow the user to select the recipients from their own...
    2. making Mailto live in an email
      Hi, I am contructing an email in vbscript to send to a successful registrant and was wondering if it was possible to make the email and (website...
    3. cgi mailto to send email from server?
      Hi Guys, I have been looking at the tutorials here: http://www.tutorialfind.com/tutorials/macromedia/flash/ 7. Sending Email Using Flash MX and...
    4. Quick way to do email link (mailto:)
      Normally in the properties bar (Ctrl+F3), if I want to make a word an email link, I just type mailto: and the email address. Is there a quicker way...
    5. How can I send the page in the body of email.
      I want to send the page in the body of the email , just like the functionality of the send page in the browser explorer . I have tried the...
  3. #2

    Default Re: Using the MailTo: how can I include the page in body of the email

    Hi,

    window.document.body.innerHTML or window.document.body.innerText

    Natty Gur, CTO
    Dao2Com Ltd.
    28th Baruch Hirsch st. Bnei-Brak
    Israel , 51114

    Phone Numbers:
    Office: +972-(0)3-5786668
    Fax: +972-(0)3-5703475
    Mobile: +972-(0)58-888377

    Know the overall picture


    *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
    Don't just participate in USENET...get rewarded for it!
    Natty Gur Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139