sendgrid-python
sendgrid-python copied to clipboard
The Official Twilio SendGrid Python API Library
### Issue Summary I'm currently trying to deploy my web application using Heroku. I have integrated Sendgrid[ A mail sending service] with my project, which worked perfectly in development but...
### Issue Summary Following the API reference guide for Python to delete an entry in the global suppression group raises a syntax error. (https://docs.sendgrid.com/api-reference/suppressions-global-suppressions/delete-a-global-suppression) The following line of code contains...
Thanks for the great API and product! It would be awesome if there was support for asynchronous api calls. **Use Case:** When charging a user's credit card over my REST...
SendGrid has added an API to download information from the Email Activity feed. There are four new endpoints: * [GET /messages](https://sendgrid.api-docs.io/v3.0/email-activity/filter-all-messages) * [GET /messages/{msg_id}](https://sendgrid.api-docs.io/v3.0/email-activity/filter-messages-by-message-id) * [POST /messages/download/](https://sendgrid.api-docs.io/v3.0/email-activity/request-csv) * [GET /messages/download/{download_uuid}](https://sendgrid.api-docs.io/v3.0/email-activity/download-csv)...
### Technical details: Currently the Python Mail class only contains these ```python 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...
### Issue Summary It is impossible to use `dict` as a custom arg. ### Steps to Reproduce 1. Create `Main` instance 2. Call `add_custom_arg` method or `custom_arg` setter to set...
Please add support for the new feature that one can specify a multiply reply to addresses in the mail header. This is supported via the `reply_to_list` attribute of the `mail/send`...
### Issue Summary New SendGrid users don't have access to the legacy marketing API so examples using that API don't work, for example ```contactdb.py```. There may be others too, e.g....
### Issue Summary Unable to use `send_each_at` option for scheduled emails as documented here: https://sendgrid.com/docs/for-developers/sending-email/scheduling-parameters/#send-each-at I intend to send mails to people at a fixed time in their timezone e.g....
### Issue Summary Hey all, Using the mail helper with `is_multiple=True` causes the `dynamic_template_data` on the message not to propagate to the actual message. It seems that this data has...