dataiku / dataiku/dss-plugin-sendmail

Multiple Email Addresses on one message

Open Beginner friendly
#7 0 comments 0 reactions 0 assignees View on GitHub

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

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. 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

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.