Class: SendEmailAction
- Inherits:
-
MessagingAction
- Object
- MacroObject
- Action
- MessagingAction
- SendEmailAction
- Defined in:
- lib/ruby-macrodroid.rb
Overview
Category: Messaging
Instance Attribute Summary
Attributes inherited from MacroObject
Instance Method Summary collapse
-
#initialize(h = {}) ⇒ SendEmailAction
constructor
A new instance of SendEmailAction.
Methods inherited from Action
Methods inherited from MacroObject
Constructor Details
#initialize(h = {}) ⇒ SendEmailAction
Returns a new instance of SendEmailAction.
2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 |
# File 'lib/ruby-macrodroid.rb', line 2431 def initialize(h={}) = { subject: '', body: '', email_address: '', from_email_address: '', attach_user_log: false, attach_log: false, send_option: 0 } super(.merge h) end |