|
Posted by Claire Lescarret on March 30, 2005, 12:33 am
Please log in for more thread options
Hello again,
I have heard that "Tell a friend" strategies are useful to promote websites
with small budgets. Do you agree?
If so, can you point to some free resources where I can get it?
Otherwise, do you have other suggestions for promotion?
Thanks in advance.
|
|
Posted by Adrienne on March 30, 2005, 8:11 pm
Please log in for more thread options
> Hello again,
>
> I have heard that "Tell a friend" strategies are useful to promote
> websites with small budgets. Do you agree?
>
> If so, can you point to some free resources where I can get it?
> Otherwise, do you have other suggestions for promotion?
>
> Thanks in advance.
>
>
Tell a Friend is usually a simple server side script. Depending on how
you code it, you can let the person write their own comment, or you can
write the comment for them.
<form method="post" action="formscript">
<fieldset><legend>All values are required</legend>
<label for="name" id="name1">Your Name: </label> <input type="text"
name="name" id="name"><br>
<label for="friendname" id="friendname1">Friend's Name: </label> <input
type="text" name="friendname" id="friendname"><br>
<label for="friendemail" id="friendemail1">Friend's Email: </label>
<input type="text" name="friendemail" id="friendemail">
<p><input type="submit" value="Send Mail"></p>
</form>
Then in the form script, iterate through the form collection ie:
To: friendemail, friendname
From: name
Subject: http://www.example.com Body: Details about your fabulous web site here
mail send
--
Adrienne Boswell
http://www.cavalcade-of-coding.info Please respond to the group so others can share
|
|
Posted by Claire Lescarret on March 31, 2005, 1:16 am
Please log in for more thread options
Adrienne,
Thank you again for helping me with this one, even though you may have
already noticed we do not write cgi code, so I am basicaly asking for
directions to dowload a free yet fairly reliable script to use, should this
method be good to promote *low* budget websites.
Other suggestions are more than welcome, including other places where I can
ask. Thank you again,
Claire.
> Tell a Friend is usually a simple server side script. Depending on how
> you code it, you can let the person write their own comment, or you can
> write the comment for them.
>
> <form method="post" action="formscript">
> <fieldset><legend>All values are required</legend>
> <label for="name" id="name1">Your Name: </label> <input type="text"
> name="name" id="name"><br>
> <label for="friendname" id="friendname1">Friend's Name: </label> <input
> type="text" name="friendname" id="friendname"><br>
> <label for="friendemail" id="friendemail1">Friend's Email: </label>
> <input type="text" name="friendemail" id="friendemail">
> <p><input type="submit" value="Send Mail"></p>
> </form>
>
> Then in the form script, iterate through the form collection ie:
>
> To: friendemail, friendname
> From: name
> Subject: http://www.example.com > Body: Details about your fabulous web site here
>
> mail send
>
>
|
|
Posted by Eric Bohlman on March 31, 2005, 5:48 am
Please log in for more thread options
> Tell a Friend is usually a simple server side script. Depending on how
> you code it, you can let the person write their own comment, or you can
> write the comment for them.
>
> <form method="post" action="formscript">
> <fieldset><legend>All values are required</legend>
> <label for="name" id="name1">Your Name: </label> <input type="text"
> name="name" id="name"><br>
> <label for="friendname" id="friendname1">Friend's Name: </label> <input
> type="text" name="friendname" id="friendname"><br>
> <label for="friendemail" id="friendemail1">Friend's Email: </label>
> <input type="text" name="friendemail" id="friendemail">
> <p><input type="submit" value="Send Mail"></p>
> </form>
>
> Then in the form script, iterate through the form collection ie:
>
> To: friendemail, friendname
> From: name
> Subject: http://www.example.com > Body: Details about your fabulous web site here
I'd *really* suggest using a database to keep track of what e-mail
addresses have been mailed to and prevent multiple mailings to the same
address. Otherwise it would be too easy for someone to use your script
to mailbomb someone.
|
|
Posted by Claire Lescarret on March 31, 2005, 1:18 am
Please log in for more thread options
Thank you Eric, I'll remember that.
Claire.
On 3/30/05 10:48 PM, Eric Bohlman wrote
Xns9629E92811BD6ebohlmanomsdevcom@130.133.1.4:
>
> I'd *really* suggest using a database to keep track of what e-mail
> addresses have been mailed to and prevent multiple mailings to the same
> address. Otherwise it would be too easy for someone to use your script
> to mailbomb someone.
|
| Similar Threads | Posted | | Works on Mac. Not PC. Arggh. | October 11, 2004, 12:23 pm |
| mailto works on my machine | August 26, 2004, 5:26 pm |
| Works in IE, Firefox but not on Safari | September 8, 2006, 8:29 pm |
| Conditional Comment, it works, but why? | October 24, 2006, 1:25 pm |
| I have two almost identical pages in IE, one works and the other doesn't | February 9, 2007, 10:38 am |
| Website works in Firefox not in IE... | October 1, 2007, 8:26 pm |
| how does www.windowsupdate.com's layout works? | September 12, 2005, 11:55 am |
| DIV & CSS style - applied to tag works - using css fails! | January 24, 2007, 6:01 am |
| DIV & CSS style - applied to tag works - using css fails! | January 24, 2007, 6:04 am |
| firefox refuses to show a website that works on other machines | July 14, 2005, 9:42 pm |
|