Class: FatFreeCRM::MailProcessor::CommentReplies

Inherits:
Base
  • Object
show all
Defined in:
lib/fat_free_crm/mail_processor/comment_replies.rb

Constant Summary collapse

ENTITY_SHORTCUTS =

Subject line of email can contain full entity, or shortcuts e.g. [contact:1234] OR [co:1234]

{
  'ac' => 'account',
  'ca' => 'campaign',
  'co' => 'contact',
  'le' => 'lead',
  'op' => 'opportunity',
  'ta' => 'task'
}

Constants inherited from Base

Base::KEYWORDS

Instance Method Summary collapse

Methods inherited from Base

#run, #setup

Constructor Details

#initializeCommentReplies




25
26
27
28
# File 'lib/fat_free_crm/mail_processor/comment_replies.rb', line 25

def initialize
  @settings = Setting.email_comment_replies.dup
  super
end