I want to move an email from my inbox to the trash folder, I do not want the email permanently deleted, I want it to go through the process of waiting 30 days in the trash to be permanently deleted.
mail = imaplib.IMAP4_SSL('imap.gmail.com')
mail.login("[email protected]", "example")
mail.select("inbox")
result, data = mail.uid('search', None, "ALL")
uidList = data[0].split()
#processEmails returns the uids of the emails that I need
#not really important for the purposes of this question
newUidList = processEmails(uidList)
newUidList
for uid in newUidList:
mail.uid('STORE',uid, '+FLAGS', '(\\Deleted)')
I thought that this line mail.uid('STORE',uid, '+FLAGS', '(\\Deleted)')
would solve the problem (because that's what I found on the internet). But being here asking this question, you probably have correctly guessed that it did not.
When I executed this script, the emails disappeared from the inbox just as planned. But when I visit the trash folder, there is nothing there. So I thought maybe they were permanently deleted.
But they were not. I noticed this when I saw that my email storage space is filling up quick which means my emails were still there somewhere.
I go into the "All Emails" folder and there they are.
mail.uid('STORE',uid, '+FLAGS', '(\\Deleted)')
Thank you for your input :)
So for anyone having the same problem, I found out how to move your email to the trash by uid. referring back to my post, I should have put mail.uid('STORE', uid, '+X-GM-LABELS', '\\Trash')
instead of mail.uid('STORE',uid, '+FLAGS', '(\\Deleted)')
And there you have it :)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With