Bob sent an email to Alice with nothing much useful and tenuous ( but because it isn't useful it can ruin Bob's reputation if bad Alice decide to publish. )
Is there a way for Bob to include a suicide-after-a-specified-time macro inside the email or similar after the "Seen" flag is set, that is still paired to Bob and not lost on Alice's inbox?
Edit: I was thinking about a CURL request, that should be embedded somewhere, but then i will a shell PID and need Alice her credentials, this won't be possible by just opening the email.
curl --url "imaps://imap.gmail.com:993/Inbox;UID=1" --user "user:password" -X "STORE 1 +Flags \Deleted"
curl --url "imaps://imap.gmail.com:993/Inbox;UID=1" --user "user:password" -X "EXPUNGE"
Thanks in advance.