Fix: SMTP IMAP configuration from email

This fix should allow emails from the "Email" inbox to show from as "Name <email@example.com>". if SMTP within Inbox is disabled.
This commit is contained in:
Sagar 2022-03-25 11:35:26 +01:00 committed by GitHub
parent a8cfcbc168
commit 5da0b0667f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -40,6 +40,10 @@ module ConversationReplyMailerHelper
end
def email_smtp_enabled
@inbox.inbox_type == 'Email' && @channel.smtp_enabled
end
def email_imap_enabled
@inbox.inbox_type == 'Email' && @channel.imap_enabled
end
@ -48,6 +52,6 @@ module ConversationReplyMailerHelper
end
def email_reply_to
email_smtp_enabled ? @channel.smtp_email : reply_email
email_imap_enabled ? @channel.imap_email : reply_email
end
end