Skip to content
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

Feature Request - Add cc, bcc and reply-to to Mail class #1017

Open
chitalian opened this issue Oct 14, 2021 · 1 comment
Open

Feature Request - Add cc, bcc and reply-to to Mail class #1017

chitalian opened this issue Oct 14, 2021 · 1 comment
Labels
status: help wanted requesting help from the community type: community enhancement feature request not on Twilio's roadmap

Comments

@chitalian
Copy link

Technical details:

Currently the Python Mail class only contains these

    def __init__(
            self,
            from_email=None,
            to_emails=None,
            subject=None,
            plain_text_content=None,
            html_content=None,
            amp_html_content=None,
            global_substitutions=None,
            is_multiple=False):

This feature would add support for BCC, CC and reply to address. This is supported by the API with personalizations

https://docs.sendgrid.com/for-developers/sending-email/personalizations

Desired API

    def __init__(
            self,
            from_email=None,
            reply_to_email=None, # NEW
            to_emails=None,
            cc_emails=None, # NEW
            bcc_emails=None, # NEW
            subject=None,
            plain_text_content=None,
            html_content=None,
            amp_html_content=None,
            global_substitutions=None,
            is_multiple=False):
@JenniferMah JenniferMah added status: help wanted requesting help from the community type: community enhancement feature request not on Twilio's roadmap labels Oct 21, 2021
@JenniferMah
Copy link
Contributor

This issue has been added to our internal backlog to be prioritized. Pull requests and +1s on the issue summary will help it move up the backlog.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
status: help wanted requesting help from the community type: community enhancement feature request not on Twilio's roadmap
Projects
None yet
Development

No branches or pull requests

2 participants