NMS non confirmed emailadresses gets newsletter emails

Have a question or a suggestion about a 3rd party addon module or plugin?
Let us know here.
Locked
bede

NMS non confirmed emailadresses gets newsletter emails

Post 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
skypanther

Re: NMS non confirmed emailadresses gets newsletter emails

Post 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
lupker

Re: NMS non confirmed emailadresses gets newsletter emails

Post 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
Locked

Return to “Modules/Add-Ons”