ListMailPRO Email Marketing Software Forums

ListMailPRO Email Marketing Software Forums => General Help & How-To => Topic started by: chief on August 20, 2007, 05:35:23 am

Title: advance user next message manually
Post by: chief on August 20, 2007, 05:35:23 am
I need to advance a selected number of user's followup message to a specific seq # - how can I do that without going one by one for each user and change the seq# and save?


How can I turn off daily mail execution manually until manually turned back on?
Title: advance user next message manually
Post by: DW on August 20, 2007, 02:45:18 pm
Quote
I need to advance a selected number of user's followup message to a specific seq # - how can I do that without going one by one for each user and change the seq# and save?

You can set all users to a certain seq # with the "Reset User" button... when you click it options appear allowing you to choose the Seq and Delay for all users.  To do part of a list would take a custom query.  Is there some criteria you want to select users on?
Quote
How can I turn off daily mail execution manually until manually turned back on?

There is not currently an on/off button so I recommend adding an additional character to your "Dailymail Password".  This will make the password incorrect so dailymail will not run.

Regards
Title: advance user next message manually
Post by: chief on August 20, 2007, 05:08:38 pm
yes - all users with a Seq 3, I need to change to Seq 4

Thanks
Title: advance user next message manually
Post by: DW on August 21, 2007, 04:00:53 am
Are you familiar with PhpMyAdmin, commonly accessible from your control panel?  If so, login, click your database, click SQL and enter (example for list1):
Code: [Select]
UPDATE lm_users SET cseq = '4' WHERE cseq = '3' AND list = '1';
Regards