Add an Auto-Responder to ANY web-page
It will produce a form as shown below.
- an email is automaitcally sent to you
Option ONE
Copy/Paste the script below
- Replace YOUREMAIL with your actual email
for example: rick@kuzik.com
- Replace YOURCAMPAIGN with your actual campaign info
for example: MyGojiCampaign
Copy/Paste THIS script
<script type="text/javascript" src="http://www.web-daemon.com/info/autoResponder.php?
owner=YOUREMAIL&subject=YOURCAMPAIGN"></script>
Option TWO
Create ANY form you need - with any fields
- Add the 2 REQUIRED hidden fields:owner, subject
- Add the 2 OPTIONAL hidden fields:next, unsubscribe
- Replace YOUREMAIL with your actual email
for example: rick@kuzik.com
- Replace YOURCAMPAIGN with your actual campaign info
for example: MyFirstCampaign
<form method="post" action="http://www.web-daemon.com/info/autoAnswer.php">
<input type="hidden" name="owner" value="YOUREMAIL">
<input type="hidden" name="subject" value="YOURCAMPAIGN">
<input type="hidden" name="next" value="YOURNEXTPAGE">
<input type="hidden" name="unsubscribe" value="unsubscribe">
Name: <input type="input" name="name">
Email: <input type="input" name="email">
<input type="submit" value="Submit">
</form>