Class: Cyclid::API::Plugins::Email
- Defined in:
- app/cyclid/plugins/action/email.rb
Overview
Email notification plugin
Class Method Summary collapse
-
.config? ⇒ Boolean
This plugin has configuration data.
-
.config_schema ⇒ Object
Config schema for the email plugin.
-
.default_config ⇒ Object
Default configuration for the email plugin.
-
.metadata ⇒ Object
Plugin metadata.
-
.update_config(current, new) ⇒ Object
Update the plugin configuration.
Instance Method Summary collapse
-
#initialize(args = {}) ⇒ Email
constructor
A new instance of Email.
-
#perform(log) ⇒ Object
Send an email to the configured recipient; the message is rendered into text & HTML via.
Methods inherited from Action
Methods inherited from Base
author, get_config, homepage, human_name, license, register_plugin, set_config, version
Constructor Details
#initialize(args = {}) ⇒ Email
Returns a new instance of Email.
28 29 30 31 32 33 34 35 36 37 38 39 |
# File 'app/cyclid/plugins/action/email.rb', line 28 def initialize(args = {}) args.symbolize_keys! raise 'an email action requires a message' unless args.include? :message @message = args[:message] raise 'an email action requires a recipient' unless args.include? :to @to = args[:to] @subject = args[:subject] || 'Cyclid notification' @color = args[:color] || 'dodgerblue' end |
Class Method Details
.config? ⇒ Boolean
This plugin has configuration data
169 170 171 |
# File 'app/cyclid/plugins/action/email.rb', line 169 def config? true end |
.config_schema ⇒ Object
Config schema for the email plugin
191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 |
# File 'app/cyclid/plugins/action/email.rb', line 191 def config_schema schema = [] schema << { name: 'server', type: 'string', description: 'SMTP server for outgoing emails', default: nil } schema << { name: 'port', type: 'integer', description: 'SMTP server port to connect to', default: nil } schema << { name: 'from', type: 'string', description: 'Sender email address', default: nil } schema << { name: 'username', type: 'string', description: 'SMTP server username', default: nil } schema << { name: 'password', type: 'password', description: 'SMTP server password', default: nil } return schema end |
.default_config ⇒ Object
Default configuration for the email plugin
179 180 181 182 183 184 185 186 187 188 |
# File 'app/cyclid/plugins/action/email.rb', line 179 def default_config config = {} config['server'] = nil config['port'] = nil config['from'] = nil config['username'] = nil config['password'] = nil return config end |
.metadata ⇒ Object
Plugin metadata
117 118 119 120 121 122 |
# File 'app/cyclid/plugins/action/email.rb', line 117 def self. super.merge!(version: Cyclid::Api::VERSION, license: 'Apache-2.0', author: 'Liqwyd Ltd.', homepage: 'http://docs.cyclid.io') end |
.update_config(current, new) ⇒ Object
Update the plugin configuration
174 175 176 |
# File 'app/cyclid/plugins/action/email.rb', line 174 def update_config(current, new) current.merge! new end |
Instance Method Details
#perform(log) ⇒ Object
Send an email to the configured recipient; the message is rendered into text & HTML via. an ERB template which inserts additional information from the context
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 |
# File 'app/cyclid/plugins/action/email.rb', line 44 def perform(log) begin # Retrieve the server-wide email configuration config = Cyclid.config.plugins email_config = load_email_config(config) Cyclid.logger.debug "sending via. #{email_config[:server]}:#{email_config[:port]} " \ "as #{email_config[:from]}" # Add the job context to = @to ** @ctx subject = @subject ** @ctx = @message ** @ctx # Create a binding for the text & HTML ERB templates info = { color: @color, title: subject } bind = binding bind.local_variable_set(:info, info) bind.local_variable_set(:ctx, @ctx) bind.local_variable_set(:message, ) # Generate text email from a template template_path = File.(File.join(__FILE__, '..', 'email', 'text.erb')) template = ERB.new(File.read(template_path), nil, '%<>-') text_body = template.result(bind) # Generate the HTML email from a template template_path = File.(File.join(__FILE__, '..', 'email', 'html.erb')) template = ERB.new(File.read(template_path), nil, '%<>-') html = template.result(bind) # Run the HTML through Premailer to inline the styles premailer = Premailer.new(html, with_html_string: true, warn_level: Premailer::Warnings::SAFE) html_body = premailer.to_inline_css # Create the email mail = Mail.new mail.from = email_config[:from] mail.to = to mail.subject = subject mail.text_part do body text_body end mail.html_part do content_type 'text/html; charset=UTF8' body html_body end # Deliver the email via. the configured server, using # authentication if a username & password were provided. log.write("sending email to #{@to}") mail.delivery_method :smtp, address: email_config[:server], port: email_config[:port], user_name: email_config[:username], password: email_config[:password] mail.deliver success = true rescue StandardError => ex log.write "#{ex.}\n" success = false end [success, 0] end |