Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tickled emails aren't always visible #2

Open
DanielStevenLewis opened this issue Mar 20, 2015 · 1 comment
Open

tickled emails aren't always visible #2

DanielStevenLewis opened this issue Mar 20, 2015 · 1 comment

Comments

@DanielStevenLewis
Copy link

Great script!

If one turns off conversation view and doesn't adhere to inbox zero philosophy, then the email reminders could appear buried somewhere in the inbox where nobody will notice them.

I dealt with this in the following way:

var EMAIL_USERNAME = "johndoe";
var EMAIL_PREFIX = EMAIL_USERNAME + "+tickler";
.
.
.

function untickleThread(t) {
.
.
.
//t.moveToInbox();
var firstMessage = t.getMessages()[0];
GmailApp.sendEmail(EMAIL_USERNAME + "@gmail.com", firstMessage.getSubject(), firstMessage.getPlainBody());
t.moveToTrash();
}

If you're tickling rich text emails you'll have to do something more sophisticated though.

@rosulek
Copy link
Owner

rosulek commented Nov 30, 2016

This could be incorporated, probably without a great deal of effort. What you propose is to delete the thread and replace it with a fresh "clone" ... I would propose just replying to the thread (to yourself only) with an empty email so that it reappears at the top. I'm not familiar with the non-conversation view, so maybe this wouldn't work well.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants