Author Topic: How can I email the same subscriber multiple times?  (Read 1411 times)

jgoth

  • Posts: 20
    • View Profile
How can I email the same subscriber multiple times?
« on: August 16, 2005, 05:35:50 am »
I want to enter an email multiple times, with the subscriber getting the same message each time. How can I enter the subscriber as new without duping? (Just want to send a one-off html email to single subscriber) Any ideas? This is a "thank you for visiting" email for a physical store location.

DW

  • Administrator
  • Posts: 3787
    • View Profile
    • https://legacy.listmailpro.com
How can I email the same subscriber multiple times?
« Reply #1 on: August 16, 2005, 08:45:43 am »
Do you just want to email each email address once?  If I understand what you're trying to do correctly, you could have a custom script run after signup to remove the user after sending the welcome message.  If you also want to email the list later on you might use a web-form to enter your users with "overwrite_dupes" enabled".

Regards
Dean Wiebe
ListMailPRO Author & Developer - Help | Support | Hosting

jgoth

  • Posts: 20
    • View Profile
signup form
« Reply #2 on: August 28, 2005, 06:56:33 pm »
I tried to set up the form to overwrite dups but when I went to regenerate the code it didn't take - sorry to be so basic, but how do I enter that command? I tried
<input type=hidden name=overwritedupes value=1>

and I get this message:


Warning: Variable passed to each() is not an array or object in /home/leadkeep/public_html/leadgen/signup.php on line 27

Warning: reset(): Passed variable is not an array or object in /home/leadkeep/public_html/leadgen/signup.php on line 63

Warning: Variable passed to each() is not an array or object in /home/leadkeep/public_html/leadgen/signup.php on line 65

Warning: reset(): Passed variable is not an array or object in /home/leadkeep/public_html/leadgen/signup.php on line 131

Warning: Variable passed to each() is not an array or object in /home/leadkeep/public_html/leadgen/signup.php on line 133
ListMail Custom HTML not found! Please contact your administrator.

DW

  • Administrator
  • Posts: 3787
    • View Profile
    • https://legacy.listmailpro.com
How can I email the same subscriber multiple times?
« Reply #3 on: August 30, 2005, 03:13:16 am »
The "Regenerate Code" button, unfortunately, won't save any custom changes to the code in the text box.

Does your complete form look something like this?
Code: [Select]
<form method=post action=http://site.com/mail/signup.php>
<input type=hidden name=overwritedupes value=1>
<input type=hidden name=list value=1>
Email: <input type=text name=email><br>
<input type=submit name=sup value="Subscribe Me!">
</form>

Regards
Dean Wiebe
ListMailPRO Author & Developer - Help | Support | Hosting