-
Notifications
You must be signed in to change notification settings - Fork 141
New issue
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
feat: Allow app services to send marketing emails #4320
feat: Allow app services to send marketing emails #4320
Conversation
b8c7411
to
0580496
Compare
04cb698
to
a6782d8
Compare
a6782d8
to
dc92e21
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It would be nice, if campaign_mail
is not defined in config to use mail
config as default.
This would ease usage on environments where specific non-transactional mail relays are not required, like on selfhosted environments.
said differently, what happen when sending campaign email if campaign_mail is not configured in cozy.yml? |
c5fb3f3
to
0019d13
Compare
Allows sending non transactional emails via a dedicated mail server to preserve the server used for transactional emails from spam detection.
Use an HTTP handler in the `jobs` web package so we can pass it the Emailer service and use it in the route handlers.
Add new method to the Emailer service to send non transactional emails via the dedicated campaign mail server.
0019d13
to
ada97fa
Compare
Preserve mail server used for transactional emails from spam detection by
allowing webapps to send marketing emails via a dedicated mail server.