mirror of https://github.com/docusealco/docuseal
				
				
				
			
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							18 lines
						
					
					
						
							434 B
						
					
					
				
			
		
		
	
	
							18 lines
						
					
					
						
							434 B
						
					
					
				# frozen_string_literal: true
 | 
						|
 | 
						|
module EmailMessages
 | 
						|
  module_function
 | 
						|
 | 
						|
  def find_or_create_for_account_user(account, user, subject, body)
 | 
						|
    subject = SubmitterMailer::DEFAULT_INVITATION_SUBJECT if subject.blank?
 | 
						|
 | 
						|
    sha1 = Digest::SHA1.hexdigest({ subject:, body: }.to_json)
 | 
						|
 | 
						|
    message = account.email_messages.find_by(sha1:)
 | 
						|
 | 
						|
    message ||= account.email_messages.create!(author: user, subject:, body:)
 | 
						|
 | 
						|
    message
 | 
						|
  end
 | 
						|
end
 |