[advanced search]
 

Go Back   NamePros.com > Discussion > Web Design & Development > Programming

Programming PHP, Perl, Ruby on Rails, AJAX, HTML, XHTML, CSS, JavaScript, MySQL and any other coding topics.


Closed Thread
 
LinkBack Thread Tools
Old 05-15-2005, 10:09 AM   #1 (permalink)
In-House Graphic Designer
 
True_Snake's Avatar
 
Join Date: Aug 2004
Location: Toronto, Canada
Posts: 4,306
37,186.96 NP$ (Donate)

True_Snake has much to be proud ofTrue_Snake has much to be proud ofTrue_Snake has much to be proud ofTrue_Snake has much to be proud ofTrue_Snake has much to be proud ofTrue_Snake has much to be proud ofTrue_Snake has much to be proud ofTrue_Snake has much to be proud ofTrue_Snake has much to be proud of

Ethan Allen Fund Ethan Allen Fund Ethan Allen Fund Child Abuse Autism
Form Emailer

Hey guys!

I was wondering if you guys know of any form-to-email services?

I tried Bravenet's, but I was looking for something without ads that just emails the form information to a specified email address.

I would like it ASAP!

Thanks for your time guys !


True_Snake
__________________

Logos:PM ME!
OVECHKIN.INFO! Rising Star!

True_Snake is offline  
Old 05-16-2005, 06:24 AM   #2 (permalink)
NamePros Member
 
Join Date: Nov 2003
Location: Ontario, Canada
Posts: 91
80.80 NP$ (Donate)

eagle12 is on a distinguished road


If your host has php, use the mail function. Or you can see if they have Pear::Mail, and use that. They are both pretty straight forward.
eagle12 is offline  
Old 05-16-2005, 07:55 AM   #3 (permalink)
Account Closed
 
Mystic's Avatar
 
Join Date: Feb 2005
Location: England
Posts: 1,169
15.05 NP$ (Donate)

Mystic is just really niceMystic is just really niceMystic is just really niceMystic is just really nice


if your host has php:

Code:
<SCRIPT LANGUAGE="php"> 
    $email = $HTTP_POST_VARS[email]; 
    $mailto = "you@domainl.com"; 
    $mailsubj = "Form submission"; 
    $mailhead = "From: $email\n"; 
    reset ($HTTP_POST_VARS); 
    $mailbody = "Values submitted from web site form:\n"; 
    while (list ($key, $val) = each ($HTTP_POST_VARS)) { 
        $mailbody .= "$key : $val\n"; } 
    mail($mailto, $mailsubj, $mailbody, $mailhead); 
</SCRIPT>
change as required, save as form.php or something and submit forms to /form.php

if your host aint got php im sure someone would host for you, you could also add this code to thankyou.php add everything you want in the thankyou page and then add this at the bottom of page
Mystic is offline  
Closed Thread


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
We customize form for your website at very good price. shrekwarrior Web Development Wanted 0 03-25-2005 08:05 PM
Paypal Settlement CMachuca The Break Room 3 07-31-2004 10:14 PM
PAYPAL Litigation johnn Domain Name Discussion 6 07-31-2004 09:51 PM
Paypal Settlement Lord The Break Room 2 07-30-2004 09:30 PM
PHP Form Script, Nice 'n' Easy! OneEyedDog CODE 7 06-20-2004 03:09 PM

Site Sponsors
Advertise your business at NamePros

All times are GMT -7. The time now is 04:07 AM.


Powered by: vBulletin® Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0
Template-Modifications by TMS
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios

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