Takeout-bysourfruit / takeout.py

A Takeout client for Python
https://pypi.org/project/takeout.py/
Creative Commons Attribution 4.0 International
1 stars 0 forks source link

The "Reply to" parameter is not available! #1

Open muhammadfaruq72 opened 1 year ago

muhammadfaruq72 commented 1 year ago

from takeout import TakeoutClient TakeoutClient.login('saved your token from GitHub') emailTemplate = { 'to': '', 'from': '', # as of July 2022, this will be (e.g) 'Takeout.js via Takeout' for free users 'subject': 'I just sent an email using Takeout!', 'html': "<b>My first email!</b>", } TakeoutClient.send(**emailTemplate)

How can the email receiver reply after getting the email?

s0urfruit commented 1 year ago

Hi there! We added reply-to as an option, along with CC (up to one email at the moment) You can read the documentation to learn how to use these new options.

Thanks!