Hello
is there a way to create an event from an email (contextual menu on a message in the message list/organize/convert-to/Event)
I've been looking through all these files
https://hg-edge.mozilla.org/comm-central/file/tip/mail/base/content/
trying to figure out a command to do it; just found in line 682
// Calendar Convert sub-menu
case "mailContext-calendar-convert-event-menuitem":
top.calendarExtract.extractFromEmail(
gDBView.hdrForFirstSelectedMessage,
true
);
break;
case "mailContext-calendar-convert-task-menuitem":
top.calendarExtract.extractFromEmail(
gDBView.hdrForFirstSelectedMessage,
false
);
break;
is there a way to use this command from tbkeys ?
Hello
is there a way to create an event from an email (contextual menu on a message in the message list/organize/convert-to/Event)
I've been looking through all these files
https://hg-edge.mozilla.org/comm-central/file/tip/mail/base/content/
trying to figure out a command to do it; just found in line 682
is there a way to use this command from tbkeys ?