From 6b011b8b44ef494324df28b1113d7d15c587070b Mon Sep 17 00:00:00 2001 From: Colin Darie Date: Thu, 2 Feb 2023 16:11:52 +0100 Subject: [PATCH] chore(dolist): helper so we know if mail is sendable by API --- app/lib/dolist/api.rb | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/lib/dolist/api.rb b/app/lib/dolist/api.rb index e6ca3129e..08ba7d57f 100644 --- a/app/lib/dolist/api.rb +++ b/app/lib/dolist/api.rb @@ -30,6 +30,11 @@ class Dolist::API sleep (limit_reset_at - Time.zone.now).ceil end + + def sendable?(mail) + # Mail having attachments are not yet supported in our account + mail.attachments.none? { !_1.inline? } + end end def properly_configured?