dataiku / dataiku/dss-plugin-sendmail
Multiple Email Addresses on one message
Nobody has claimed this yet.
- Dominant language
- Python
- Stars
- 0
- Forks
- 2
- PR merge metrics
- No merged PRs in 30d
Description
If line 114 of recipe.py is changed from
s.sendmail(sender, [recipient], msg.as_string())
to
s.sendmail(sender, recipient.split(','), msg.as_string())
then it will allow a comma separated list of email addresses. This enables one email to be sent to multiple users and if they then reply to the message it goes to the other users in the list allowing discussion on whatever the topic of the email is.
Contributor guide
No contributing guide indexed for this repository
First steps
- Read the whole issue, then the project's contributing guide.
- Comment on the issue to say you are picking it up — it saves two people doing the same work.
- Fork the repository and make your change on a branch.
- Open a pull request that references the issue number.
Research direction
Start at line 114 of recipe.py and inspect the existing sendmail call and how recipient is obtained. Implement the requested support for comma-separated addresses, then verify that one message is delivered to all listed recipients and that replies include the group.
Written by the indexing model from the issue text.
Assessment
- Tech stack
- python
- Domain
- backend
- Issue type
- Feature
- Difficulty
- 1/5
- Estimated time
- Under an hour
- Activity status
- Stale
- Clarity
- Clearly specified
- Newbie friendliness
- 65/100