Webmaster Forum

Go Back   Webmaster Forum > Web Development > Web Design Lobby

Web Design Lobby Forum for general web design issues not specific to scripting or graphics.


Reply
LinkBack Thread Tools Display Modes
Old 06-24-2006, 09:13 AM   #1 (permalink)
Contributing Member
 
andrewp's Avatar
 
Join Date: 06-20-06
Location: Wales
Posts: 436
iTrader: 0 / 0%
Latest Blog:
None

andrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the rough
Autoresponder help

Could anybody please recommend any good autoresponders for e-mails? I want to have my website setup so when a form is sent to me an autoresponse message is automatically sent to say it has been received.

Cheers in advance!
andrewp is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-24-2006, 10:08 AM   #2 (permalink)
v7n Mentor
 
cimmeron's Avatar
 
Join Date: 02-16-06
Posts: 2,523
iTrader: 0 / 0%
cimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nice
actually, depending on how you coded the form processing, you can set it up to do that without needing an outside program. If I'm understanding your questions, that is

you want a visitor to enter his/her information and then once they click submit, they get an auto email thanking them?
__________________
Wicked Relevant | Website Design
Affordable Web Design, too
cimmeron is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-24-2006, 04:39 PM   #3 (permalink)
Contributing Member
 
andrewp's Avatar
 
Join Date: 06-20-06
Location: Wales
Posts: 436
iTrader: 0 / 0%
Latest Blog:
None

andrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the rough
Yes thats correct, I have been searching for some sort of code to do it but when i have searched i've just found a lot of websites promoting autoresponder software.
andrewp is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-26-2006, 11:35 PM   #4 (permalink)
v7n Mentor
 
cimmeron's Avatar
 
Join Date: 02-16-06
Posts: 2,523
iTrader: 0 / 0%
cimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nice
what language are you using? PHP, ASP?
__________________
Wicked Relevant | Website Design
Affordable Web Design, too
cimmeron is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-27-2006, 04:20 AM   #5 (permalink)
v7n Mentor
 
JamieJelly's Avatar
 
Join Date: 03-09-06
Posts: 1,250
iTrader: 0 / 0%
Latest Blog:
None

JamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest orderJamieJelly is a web professional of the highest order
If you are using PHP, this is pretty easy.

PHP Code:
// code to deal with form
$name $_POST['name'];
$email $_POST['email'];


// send email to webmaster with form details
// email headers
    
$headers .= "From: From Name<fromaddress@domain.com>\n";
    
$headers .= "X-Sender: <fromaddress@domain.com>\n";
    
$headers .= "X-Mailer: PHP\n"// mailer
    
$headers .= "Return-Path: <fromaddress@domain.com>\n"// Return path for errors
    
    
$subject "New message from website"
    
    
$message "
The message here
"
;
    
mail($email$subject$message$headers"-fbounce@domain.com");
    

// send autoresponse to enquirer
// email headers
    
$headers .= "From: From Name<fromaddress@domain.com>\n";
    
$headers .= "X-Sender: <fromaddress@domain.com>\n";
    
$headers .= "X-Mailer: PHP\n"// mailer
    
$headers .= "Return-Path: <fromaddress@domain.com>\n"// Return path for errors
    
    
$subject "Thank you for your enquiry"
    
    
$message "
The message here
"
;
    
mail($email$subject$message$headers"-fbounce@domain.com"); 
JamieJelly is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-27-2006, 09:21 PM   #6 (permalink)
v7n Mentor
 
cimmeron's Avatar
 
Join Date: 02-16-06
Posts: 2,523
iTrader: 0 / 0%
cimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nicecimmeron is just really nice
there you go. I guess I coulda just posted that too, but I didn't.....
__________________
Wicked Relevant | Website Design
Affordable Web Design, too
cimmeron is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-28-2006, 03:19 AM   #7 (permalink)
Contributing Member
 
andrewp's Avatar
 
Join Date: 06-20-06
Location: Wales
Posts: 436
iTrader: 0 / 0%
Latest Blog:
None

andrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the roughandrewp is a jewel in the rough
Thanks, i will give that a try
andrewp is offline  
Add Post to del.icio.us
Reply With Quote
Old 06-30-2006, 07:40 AM   #8 (permalink)
Junior Member
 
Aritrim's Avatar
 
Join Date: 04-02-05
Posts: 20
iTrader: 0 / 0%
Latest Blog:
None

Aritrim is liked by many
Andrew look for a "smtp script with php". There should be a lot that are free available. I did use the mail() function for a lot of forms, but smtp is just more reliable.
Aritrim is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-04-2007, 05:49 AM   #9 (permalink)
Junior Member
 
Join Date: 07-03-07
Posts: 7
iTrader: 0 / 0%
Latest Blog:
None

vckc4ever is liked by many
autoresponders

Hi,

There are a few autoresponders in the market..

www.freeautobot.com
www.aweber.com
www.getresponse.com

and i think you can get a lot more in the market.

free one, you can test and try out freeautobot. otherwise if you want a more powerful, you can get the paid version.

Cheers !
Vince
vckc4ever is offline  
Add Post to del.icio.us
Reply With Quote
Old 07-04-2007, 07:28 AM   #10 (permalink)
Senior Member
 
Join Date: 06-12-07
Posts: 423
iTrader: 0 / 0%
Tinien is web crap
Wink

Quote:
Originally Posted by JamieJelly View Post
If you are using PHP, this is pretty easy.

PHP Code:
// code to deal with form
$name $_POST['name'];
$email $_POST['email'];


// send email to webmaster with form details
// email headers
    
$headers .= "From: From Name<fromaddress@domain.com>\n";
    
$headers .= "X-Sender: <fromaddress@domain.com>\n";
    
$headers .= "X-Mailer: PHP\n"// mailer
    
$headers .= "Return-Path: <fromaddress@domain.com>\n"// Return path for errors
    
    
$subject "New message from website"
    
    
$message "
The message here
"
;
    
mail($email$subject$message$headers"-fbounce@domain.com");
    

// send autoresponse to enquirer
// email headers
    
$headers .= "From: From Name<fromaddress@domain.com>\n";
    
$headers .= "X-Sender: <fromaddress@domain.com>\n";
    
$headers .= "X-Mailer: PHP\n"// mailer
    
$headers .= "Return-Path: <fromaddress@domain.com>\n"// Return path for errors
    
    
$subject "Thank you for your enquiry"
    
    
$message "
The message here
"
;
    
mail($email$subject$message$headers"-fbounce@domain.com"); 
Many thanks
Tinien is offline  
Add Post to del.icio.us
Reply With Quote
Old 09-17-2008, 12:20 AM   #11 (permalink)
Junior Member
 
Join Date: 09-16-08
Location: Singapore
Posts: 8
iTrader: 0 / 0%
JohnKhoo is liked by many
Quote:
Originally Posted by andrewp View Post
Could anybody please recommend any good autoresponders for e-mails? I want to have my website setup so when a form is sent to me an autoresponse message is automatically sent to say it has been received.

Cheers in advance!
Although i have been very late to reply this post. I hope this will benefit new viewers.

Normally when we talked about autoresponders. Only two companies that come across my mind (i guess majority people who know what is autoresponder also think it this way) are Aweber and GetResponse. They are the popular one and many major players out there on the internet use them too. If you really want to find out what are the difference between them. Please feel free to visit my blog at johnkhoo.com and look for category "Autoresponder". You will find a post "Aweber VS GetResponser, Which One Will You Choose?". This post will help you judge on which autoresponder is suitable for you. Hope this will help and good luck.
JohnKhoo is offline  
Add Post to del.icio.us
Reply With Quote
Old 09-17-2008, 02:28 PM   #12 (permalink)
Member
 
Join Date: 09-10-08
Posts: 75
iTrader: 0 / 0%
Latest Blog:
None

radhika is liked by many
Is it OK to digg-up a 2 year old post on this forum?

A question to moderators ...

.
radhika is offline  
Add Post to del.icio.us
Reply With Quote
Old 08-21-2009, 12:31 AM   #13 (permalink)
Contributing Member
 
Join Date: 06-11-08
Posts: 83
iTrader: 0 / 0%
Latest Blog:
None

nik123 is liked by many
i guess it's ok if he would like to contribute to the community.
__________________
724 Care | Philippines Call Center
nik123 is offline  
Add Post to del.icio.us
Reply With Quote
Old 09-02-2009, 12:50 AM   #14 (permalink)
Contributing Member
 
Join Date: 07-25-07
Posts: 207
iTrader: 0 / 0%
Latest Blog:
None

nicesurf is liked by many
You can get it here hxxp://infinite.ibasics.biz/index.php#download

It's free
nicesurf is offline  
Add Post to del.icio.us
Reply With Quote
Old 11-02-2009, 05:12 AM   #15 (permalink)
Junior Member
 
farotto's Avatar
 
Join Date: 03-23-09
Location: Lyon, France
Posts: 6
iTrader: 0 / 0%
Latest Blog:
None

farotto is liked by many
Send a message via Skype™ to farotto
Aweber and Getresponse dominate the market, and they offer a top quality service.

If you're searching for a free service, thogh:
1) use the php code given in this thread
2) try freeautobot (yeah, it's free, but you get ads in the mails yous end out which make them look quite unprofessional)
3) try http://www.jv-marketers.com/, it offers a better service than autobot, but it's limited to two followup series I think, no ads
4) try http://blogautoposter.free.fr/ar, no ads, up to 5 followup series and 250 subscribers
__________________
Giovanni Farotto

PS: Can you give away an auto responder account? If you can you will be successful and build your list!
http://blogautoposter.free.fr/ar
farotto is offline  
Add Post to del.icio.us
Reply With Quote
Unread 11-08-2009, 05:41 PM   #16 (permalink)
Junior Member
 
Join Date: 11-08-09
Posts: 11
iTrader: 0 / 0%
Latest Blog:
None

vhinz316 is liked by many
Great! I also need this software for my co-office workers..thanks for the share
vhinz316 is online now  
Add Post to del.icio.us
Reply With Quote
Go Back   Webmaster Forum > Web Development > Web Design Lobby

Reply


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

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
help with hosting for autoresponder alex0042 Web Hosting Forum 13 05-19-2008 04:50 PM
Autoresponder that support the Greek language? Terry1970 Web Design Lobby 1 01-04-2008 07:44 AM
Need help with Autoresponder Script vckc4ever Coding Forum 1 07-04-2007 08:26 AM
Re: I need a autoresponder Jwaza Marketing Forum 4 08-25-2004 09:32 AM
Which is the best URL for my new autoresponder review site? TerrelShumway Domain Name Forum 0 07-04-2004 09:21 PM


Sponsor Links
Get exposure! Contextual Links V7N SEO Blog V7N Directory


All times are GMT -7. The time now is 09:55 PM.
© Copyright 2008 V7 Inc
Powered by vBulletin
Copyright © 2000-2009 Jelsoft Enterprises Limited.


Search Engine Optimization by vBSEO 3.3.0 ©2009, Crawlability, Inc.