Send email from HTML Form without ASP

Ask a Question related to ASP, Design and Development.

  1. #1

    Default Send email from HTML Form without ASP

    Hi...I was wondering if it is possible to send an email containing data
    caught in an HTML form, without using ASP (as my ISP doesn't support ASP).

    Thanks.


    Sam Guest

  2. Similar Questions and Discussions

    1. send email form to ColdFusion
      I am trying to send data filled out in a form in my flash movie to send mail using CFMAIL. In my form that is in Flash I have variables set. Then...
    2. Send data from a form through email without using CFMAIL
      Newbie question: I have this form that collects data from input boxes and would like to send that data to an email address. Is there a way to do...
    3. Send form by clicking button (by email)
      Hello, how can i send an email by clicking a button? This action should take al data from the fields and send this to an emailaddress... ...
    4. send email address from form
      I have a page on which an automatically generated password is inserted into my access database for storage. What I need to do is at the same time,...
    5. how to send html email from perl
      I just had the same question, and found that the following works. If you're using the "sendmail" package (see...
  3. #2

    Default Re: Send email from HTML Form without ASP

    What does your host support? PHP? You'd need some sort of server-side
    programming technology if you want to programmatically instruct your server
    to do something.

    Ray at work

    "Sam" <nospam@nospam.com> wrote in message
    news:OTlDZaClDHA.1084@tk2msftngp13.phx.gbl...
    > Hi...I was wondering if it is possible to send an email containing data
    > caught in an HTML form, without using ASP (as my ISP doesn't support ASP).
    >
    > Thanks.
    >
    >

    Ray at Guest

  4. #3

    Default Re: Send email from HTML Form without ASP

    > Hi...I was wondering if it is possible to send an email containing data
    > caught in an HTML form, without using ASP (as my ISP doesn't support ASP).
    You could have your form submit directly to your email address...
    <form method=post action="mailto:yourname@yourdomain.com">

    This is somewhat unreliable though, since it may not work with some older
    browsers. Also, I think the user will be prompted that the info is being
    submitted by email - I don't remember though, I haven't used this method in
    a long, long time.

    Randy


    Randy Rahbar Guest

  5. #4

    Default Re: Send email from HTML Form without ASP

    Gazing into my crystal ball I observed "Randy Rahbar"
    <rvrahbarAThotmail.com> writing in
    news:O9aKZpClDHA.2312@TK2MSFTNGP12.phx.gbl:
    >> Hi...I was wondering if it is possible to send an email containing
    >> data caught in an HTML form, without using ASP (as my ISP doesn't
    >> support ASP).
    >
    > You could have your form submit directly to your email address...
    ><form method=post action="mailto:yourname@yourdomain.com">
    >
    > This is somewhat unreliable though, since it may not work with some
    > older browsers. Also, I think the user will be prompted that the info
    > is being submitted by email - I don't remember though, I haven't used
    > this method in a long, long time.
    >
    > Randy
    >
    >
    >
    Yes, that's exactly what's going to happen, which will not obviously work
    for people using a library, Internet Cafe, Kinko's, web mail users, at a
    client's, etc.

    To the OP, if you don't have access to server side script, then use
    something remotely hosted, eg. [url]http://www.reponse-o-matic.com[/url] .

    --
    Adrienne Boswell
    Please respond to the group so others can share
    [url]http://www.arbpen.com[/url]
    Adrienne 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