Files
clientsflow/research/chatwoot/app/services/imap/fetch_email_service.rb

16 lines
225 B
Ruby

class Imap::FetchEmailService < Imap::BaseFetchEmailService
def fetch_emails
fetch_mail_for_channel
end
private
def authentication_type
'PLAIN'
end
def imap_password
channel.imap_password
end
end