Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iaindooley/bab6ae13006b1ef01f78a21324c8c0fd to your computer and use it in GitHub Desktop.
Save iaindooley/bab6ae13006b1ef01f78a21324c8c0fd to your computer and use it in GitHub Desktop.
Remove emailed attachments
function removeAttachmentsFromCreatedCard(notification)
{
new Notification(notification).createdCard()
.attachments().each(function(att)
{
att.remove();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment