Page 1 of 1

NMS non confirmed emailadresses gets newsletter emails

Posted: Tue Apr 03, 2007 12:38 pm
by bede
Hi
Im trying to implemente the NMS module to a site, and it gives me some problems...

- non confirmed email adresses gets an email if im sending out newsletters.
- if users unsubscribes they are not deletet from the database only the list collum is set to 0
  ,so if users would like to re-subscribe they get the message that the email adress exists.
- problem showing danish characters from the NMS templates.

have U had simular problems or maybe a solution to this ?

 
best regards
Benjamin

-CMS version 1.0.5  safe mode
-NMS 1.0.1  pref: UTF-8
-CMSmailer version 1.73.10 pref:SMTP
-location Denmark

Re: NMS non confirmed emailadresses gets newsletter emails

Posted: Fri Apr 06, 2007 8:58 pm
by skypanther
Benjamin,

Please submit these as bugs in the Forge and I'll check them out when I have a chance. I know there's an open bug about some strings being hard-coded into the module and rather than being in the language files.

Tim

Re: NMS non confirmed emailadresses gets newsletter emails

Posted: Mon Jun 04, 2007 8:02 am
by lupker
I had the same problem, but it is pretty easy to fix:

Open the action.process_queue.php file and search for the following line:

Code: Select all

WHERE C.disabled = 0 AND jobid = ? order by messageid";
replace this with:

Code: Select all

WHERE C.disabled = 0 AND C.confirmed = 1 AND jobid = ? order by messageid";
And that's it...

Greetz,
Lupker