Results 1 to 3 of 3

Thread: Sending Form details as email

  1. #1

    Sending Form details as email

    Hi

    I want to send a form page as email to:xyz@hostname.com.

    Tried "mailto" , but user needs to configure their SMTP/POP details.
    Do we have any standard Javascript code , without configuring anything in browser.Should work in both IE &NN.

    Would be greatful to receive the code.

    Thanks

  2. #2
    Moderator
    Join Date
    Oct 2000
    Location
    Should be used instead of document.location . Except with a small l.
    Posts
    3,224
    Hi bernaj,

    Try a remotely-hosted e-mail script like one found here.
    Form Parser (pass values from one page to another):
    FAQ Entry | Original Thread | Having Problems with the script? | Put Values Back Into Another Form

    Navigation: Frame

  3. #3
    Moderator
    United Nations Vincent Puglia's Avatar
    Join Date
    Jan 2000
    Location
    where the World once stood
    Posts
    4,961
    Hi,

    Although voicebox's suggestion is probably the best way to go, you might be interested in the following thread:

    http://www.webxpertz.net/forums/showthread.php?t=6746

    Note that if you try to use the "&body" thingy, you'll have to create the string in a function:

    var myBody = "&body";
    myBody += 'document.formname.elements[0].name' + '=' + 'document.formname.elements[0].value';
    ....etc...

    mailto:".....?subject:form results" + myBody;

    Contrary to what it says in the thread, though, I seem to recall having had problems with the "&body" parameter -- everything was written within the subject area.

    vinny
    The Blades of Grass cut me still
    grassBlade

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. sending email to email via form
    By ripper in forum Client-side forum
    Replies: 1
    Last Post: 24th May 2002, 13:31
  2. Form filling, confirming and sending it via email
    By George W. Bush in forum Server-side Forum
    Replies: 4
    Last Post: 16th June 2001, 03:06
  3. help with sending form to email
    By Sic84 in forum Client-side forum
    Replies: 1
    Last Post: 1st March 2001, 08:33
  4. Passing Form details to email
    By bernaj98 in forum Client-side forum
    Replies: 4
    Last Post: 7th November 2000, 18:06

Bookmarks

Posting Permissions

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