-
Notifications
You must be signed in to change notification settings - Fork 726
Open
Labels
status: help wantedrequesting help from the communityrequesting help from the communitytype: community enhancementfeature request not on Twilio's roadmapfeature request not on Twilio's roadmap
Description
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. 10am IST and 10am GMT.
Steps to Reproduce
- Send with
mail.send_each_at = [1620766504, 1620767504]
- The emails come instantly, instead of at the scheduled time
Code Snippet
mail = Mail(
from_email=From('[email protected]'),
to_emails=[To('[email protected]'), To('[email protected]')],
is_multiple=True,
)
mail.send_each_at = [1620766504, 1620767504]
client.send(mail)
Exception/Log
# no exception, code executes successfully.
Technical details:
- sendgrid-python version: 6.6.0
- python version: 3.7.9
Metadata
Metadata
Assignees
Labels
status: help wantedrequesting help from the communityrequesting help from the communitytype: community enhancementfeature request not on Twilio's roadmapfeature request not on Twilio's roadmap