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
NMS non confirmed emailadresses gets newsletter emails
Re: NMS non confirmed emailadresses gets newsletter emails
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
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
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:
replace this with:
And that's it...
Greetz,
Lupker
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";
Code: Select all
WHERE C.disabled = 0 AND C.confirmed = 1 AND jobid = ? order by messageid";
Greetz,
Lupker