Author Topic: advance user next message manually  (Read 1899 times)

chief

  • Posts: 37
    • View Profile
advance user next message manually
« 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?

DW

  • Administrator
  • Posts: 3787
    • View Profile
    • https://legacy.listmailpro.com
advance user next message manually
« Reply #1 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
Dean Wiebe
ListMailPRO Author & Developer - Help | Support | Hosting

chief

  • Posts: 37
    • View Profile
advance user next message manually
« Reply #2 on: August 20, 2007, 05:08:38 pm »
yes - all users with a Seq 3, I need to change to Seq 4

Thanks

DW

  • Administrator
  • Posts: 3787
    • View Profile
    • https://legacy.listmailpro.com
advance user next message manually
« Reply #3 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
Dean Wiebe
ListMailPRO Author & Developer - Help | Support | Hosting