Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS mailing list help

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #45380
    rwchampin
    Participant

    im trying to help a friends with a mailing list and this is the code we have so far but i dont know how to make it actually send the email entered to MY email. help?

    form name=”news” method=”post” action=””
    input type=”text” name=”newsInput” value=”” class=”newsInput”/
    input type=”image” name=”newsSubmit” value=”” class=”newsSubmit”/
    /form>”

    i deleted the beginning < and ending > tags so this wouldnt get hidden on the post…im new sorry lol

    #138055
    __
    Participant

    > i deleted the beginning < and ending > tags so this wouldnt get hidden on the post…im new sorry lol

    you can put code between backticks (observe: ` code ` becomes `code`)

    or indent it four spaces:

        code

    becomes

    code

    *****
    >i dont know how to make it actually send the email entered to MY email.

    a form does not send emails. It submits user input to your server (i.e., to the URL in the form’s `action` attribute), which typically does something with the info (processes the info, sends an email, and/or some other function).

    You need a server-side language available to write a script to process the form submission. Do you?

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘CSS’ is closed to new topics and replies.