email - Sendgrid Web API -- set multiple users in reply_to field -
i'm using sendgrid python library, , i'd send emails multiple people in 'reply_to' field.
i'd send email 2 people such both users can email 1 hitting reply. simplest solution seems to put both users in reply field.
i haven't seen way in sendgrid docs -- seem want single email address string in 'reply_to' field. however, know emails characteristic possible (please excuse budget redaction job):
anyway, can see, multiple entries in 'reply-to' possible. know how sendgrid?
yes possible sendgrid. add multiple 'reply-to' entries have use custom headers.
so in python, add:
message.add_header("reply-to", "user1@email.com, user2@email.com")
Comments
Post a Comment