Author Topic: Emailing Unconfirmed Subscribers  (Read 1352 times)

sam0812

  • Posts: 22
    • View Profile
Emailing Unconfirmed Subscribers
« on: January 12, 2005, 07:44:08 am »
Is this feature available yet?  

I have a huge list of unconfirmed subscribers and would like to
send them an email to remind them.

Thanks.

DW

  • Administrator
  • Posts: 3787
    • View Profile
    • https://legacy.listmailpro.com
Emailing Unconfirmed Subscribers
« Reply #1 on: January 15, 2005, 01:55:23 am »
This feature is coming.  For now, all you can do is set up a temporary list, then run some custom MySQL commands (in PhpMyAdmin) to manipulate the users.

Example: Temp list is 5, main list is 1

1) move all unconfirmed users from list 1 to empty list 5

UPDATE lm_users SET list = '5', cnf = '1' where cnf = '0' and list = '1';

2) Send a manual confirmation email with the "Send Email" feature to list 5.  Use the "User's Unique ID" message code to output the user's UID with a manually created confirmation link:

http://site.com/listmail/confirm.php?u=!uid

3) Immediately after sending the email, move the users back to list 1.

UPDATE lm_users SET list = '1', cnf = '0' where list = '5';

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