Class: IntegrationApi::SMTPApi
- Inherits:
-
Object
- Object
- IntegrationApi::SMTPApi
- Defined in:
- lib/integration_api/api/smtp_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#get_email_details(email_id, opts = {}) ⇒ Email
Fetch details for corresponding email_id Fetch details for corresponding email_id.
-
#get_email_details_with_http_info(email_id, opts = {}) ⇒ Array<(Email, Fixnum, Hash)>
Fetch details for corresponding email_id Fetch details for corresponding email_id.
-
#initialize(api_client = ApiClient.default) ⇒ SMTPApi
constructor
A new instance of SMTPApi.
-
#send_mail1(smtp_vo, opts = {}) ⇒ SmtpResponseVO
Send Mail to recipient Send Mail to recipient.
-
#send_mail1_with_http_info(smtp_vo, opts = {}) ⇒ Array<(SmtpResponseVO, Fixnum, Hash)>
Send Mail to recipient Send Mail to recipient.
Constructor Details
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/integration_api/api/smtp_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#get_email_details(email_id, opts = {}) ⇒ Email
Fetch details for corresponding email_id Fetch details for corresponding email_id
27 28 29 30 |
# File 'lib/integration_api/api/smtp_api.rb', line 27 def get_email_details(email_id, opts = {}) data, _status_code, _headers = get_email_details_with_http_info(email_id, opts) data end |
#get_email_details_with_http_info(email_id, opts = {}) ⇒ Array<(Email, Fixnum, Hash)>
Fetch details for corresponding email_id Fetch details for corresponding email_id
37 38 39 40 41 42 43 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 |
# File 'lib/integration_api/api/smtp_api.rb', line 37 def get_email_details_with_http_info(email_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: SMTPApi.get_email_details ...' end # verify the required parameter 'email_id' is set if @api_client.config.client_side_validation && email_id.nil? fail ArgumentError, "Missing the required parameter 'email_id' when calling SMTPApi.get_email_details" end # resource path local_var_path = '/smtp/status/{email_id}'.sub('{' + 'email_id' + '}', email_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['*/*']) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['oauth2'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Email') if @api_client.config.debugging @api_client.config.logger.debug "API called: SMTPApi#get_email_details\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#send_mail1(smtp_vo, opts = {}) ⇒ SmtpResponseVO
Send Mail to recipient Send Mail to recipient
79 80 81 82 |
# File 'lib/integration_api/api/smtp_api.rb', line 79 def send_mail1(smtp_vo, opts = {}) data, _status_code, _headers = send_mail1_with_http_info(smtp_vo, opts) data end |
#send_mail1_with_http_info(smtp_vo, opts = {}) ⇒ Array<(SmtpResponseVO, Fixnum, Hash)>
Send Mail to recipient Send Mail to recipient
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 115 116 117 118 119 120 121 122 123 124 125 126 127 |
# File 'lib/integration_api/api/smtp_api.rb', line 89 def send_mail1_with_http_info(smtp_vo, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: SMTPApi.send_mail1 ...' end # verify the required parameter 'smtp_vo' is set if @api_client.config.client_side_validation && smtp_vo.nil? fail ArgumentError, "Missing the required parameter 'smtp_vo' when calling SMTPApi.send_mail1" end # resource path local_var_path = '/smtp' # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' header_params['Content-Type'] = @api_client.select_header_content_type(['application/json']) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(smtp_vo) auth_names = ['oauth2'] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'SmtpResponseVO') if @api_client.config.debugging @api_client.config.logger.debug "API called: SMTPApi#send_mail1\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |