We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The salutation handling code is broken for test send:
https://github.com/collective/Products.EasyNewsletter/blob/master/Products/EasyNewsletter/content/ENLIssue.py#L378-L389
(Pdb) salutation_mappings {'ms': {'de': 'Sehr geehrte Damen und Herren,'}, 'mr': {'de': 'Sehr geehrte Damen und Herren,'}} (Pdb) salutation = salutation_mappings.get('default', '') (Pdb) salutation '' (Pdb) salutation.get(self.Language(), '') *** AttributeError: 'str' object has no attribute 'get'
The text was updated successfully, but these errors were encountered:
The same issue is true for the real send operation.
Sorry, something went wrong.
No branches or pull requests
The salutation handling code is broken for test send:
https://github.com/collective/Products.EasyNewsletter/blob/master/Products/EasyNewsletter/content/ENLIssue.py#L378-L389
The text was updated successfully, but these errors were encountered: