 |
06-24-2006, 09:13 AM
|
#1 (permalink)
|
|
Contributing Member
Join Date: 06-20-06
Location: Wales
Posts: 436
Latest Blog: None
|
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!
|
|
|
06-24-2006, 10:08 AM
|
#2 (permalink)
|
|
v7n Mentor
Join Date: 02-16-06
Posts: 2,523
|
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?
|
|
|
06-24-2006, 04:39 PM
|
#3 (permalink)
|
|
Contributing Member
Join Date: 06-20-06
Location: Wales
Posts: 436
Latest Blog: None
|
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.
|
|
|
06-26-2006, 11:35 PM
|
#4 (permalink)
|
|
v7n Mentor
Join Date: 02-16-06
Posts: 2,523
|
what language are you using? PHP, ASP?
|
|
|
06-27-2006, 04:20 AM
|
#5 (permalink)
|
|
v7n Mentor
Join Date: 03-09-06
Posts: 1,250
Latest Blog: None
|
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");
|
|
|
06-27-2006, 09:21 PM
|
#6 (permalink)
|
|
v7n Mentor
Join Date: 02-16-06
Posts: 2,523
|
there you go. I guess I coulda just posted that too, but I didn't..... 
|
|
|
06-28-2006, 03:19 AM
|
#7 (permalink)
|
|
Contributing Member
Join Date: 06-20-06
Location: Wales
Posts: 436
Latest Blog: None
|
Thanks, i will give that a try 
|
|
|
06-30-2006, 07:40 AM
|
#8 (permalink)
|
|
Junior Member
Join Date: 04-02-05
Posts: 20
Latest Blog: None
|
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.
|
|
|
07-04-2007, 05:49 AM
|
#9 (permalink)
|
|
Junior Member
Join Date: 07-03-07
Posts: 7
Latest Blog: None
|
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
|
|
|
07-04-2007, 07:28 AM
|
#10 (permalink)
|
|
Senior Member
Join Date: 06-12-07
Posts: 423
|
Quote:
Originally Posted by JamieJelly
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 
|
|
|
09-17-2008, 12:20 AM
|
#11 (permalink)
|
|
Junior Member
Join Date: 09-16-08
Location: Singapore
Posts: 8
|
Quote:
Originally Posted by andrewp
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.
|
|
|
09-02-2009, 12:50 AM
|
#12 (permalink)
|
|
Contributing Member
Join Date: 07-25-07
Posts: 218
Latest Blog: None
|
You can get it here hxxp://infinite.ibasics.biz/index.php#download
It's free
|
|
|
11-02-2009, 05:12 AM
|
#13 (permalink)
|
|
Junior Member
Join Date: 03-23-09
Location: Lyon, France
Posts: 6
Latest Blog: None
|
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
|
|
|
|
Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
|
|
|
| Thread Tools |
|
|
| Display Modes |
Linear Mode
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -7. The time now is 06:42 PM.
© Copyright 2008 V7 Inc Powered by vBulletin Copyright © 2000-2009 Jelsoft Enterprises Limited.
|
|