emencia / emencia-django-newsletter

An app for sending newsletter by email to a contact list.
189 stars 72 forks source link

Error while sending newsletter #79

Open anilshanbhag opened 10 years ago

anilshanbhag commented 10 years ago
xx@yy:~/webapps/dictanote$ ./manage.py send_newsletter
Starting sending newsletters...
Start emailing 1
1 emails will be sent
- Processing 1/1 (5)
smtp connection raises Could not parse the remainder: ',uidb36=uidb36,token=token' from 'newsletter.slug,uidb36=uidb36,token=token'
End session sending

Not really sure where this extra part is getting added. Any help ?

mfoacs commented 10 years ago

Same here...

mfoacs commented 10 years ago

If you're using Django >= 1.5 you have check all url tags and correct them. For example, in the file newsletter_link_site.html the url line should be modified with the new syntax: {% url 'newsletter_newsletter_contact' slug=newsletter.slug uidb36=uidb36 token=token %} and so on...