Class: ActionMailer::Preview

Inherits:
Object
  • Object
show all
Extended by:
ActiveSupport::DescendantsTracker
Defined in:
lib/action_mailer/preview.rb

Class Method Summary collapse

Class Method Details

.allObject

Returns all mailer preview classes



46
47
48
49
# File 'lib/action_mailer/preview.rb', line 46

def all
  load_previews if descendants.empty?
  descendants
end

.call(email) ⇒ Object

Returns the mail object for the given email name. The registered preview interceptors will be informed so that they can transform the message as they would if the mail was actually being delivered.



54
55
56
57
58
59
# File 'lib/action_mailer/preview.rb', line 54

def call(email)
  preview = self.new
  message = preview.public_send(email)
  inform_preview_interceptors(message)
  message
end

.email_exists?(email) ⇒ Boolean

Returns true if the email exists

Returns:

  • (Boolean)


67
68
69
# File 'lib/action_mailer/preview.rb', line 67

def email_exists?(email)
  emails.include?(email)
end

.emailsObject

Returns all of the available email previews



62
63
64
# File 'lib/action_mailer/preview.rb', line 62

def emails
  public_instance_methods(false).map(&:to_s).sort
end

.exists?(preview) ⇒ Boolean

Returns true if the preview exists

Returns:

  • (Boolean)


72
73
74
# File 'lib/action_mailer/preview.rb', line 72

def exists?(preview)
  all.any?{ |p| p.preview_name == preview }
end

.find(preview) ⇒ Object

Find a mailer preview by its underscored class name



77
78
79
# File 'lib/action_mailer/preview.rb', line 77

def find(preview)
  all.find{ |p| p.preview_name == preview }
end

.preview_nameObject

Returns the underscored name of the mailer preview without the suffix



82
83
84
# File 'lib/action_mailer/preview.rb', line 82

def preview_name
  name.sub(/Preview$/, '').underscore
end