This sample will show you to easily delete an email with the Nylas Python SDK.
You can follow along step-by-step in our blog post "How to Read Emails with the Nylas Python SDK".
- Python v3.x
You'll need the following values:
ACCESS_TOKEN = ""
CLIENT_ID = ""
CLIENT_SECRET = ""
Add the above values to a new .env
file:
$ touch .env # Then add your env variables
$ pip3 install nylas
Run the script using the python3
command:
$ python3 DeleteEmail.py
When your message is successfully deleted, you'll get the following output in your terminal:
Email deleted succesfully
Visit our Nylas Python SDK documentation to learn more.