module MailSlurpClient

#MailSlurp API

#MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](www.mailslurp.com) - Get an [API KEY](app.mailslurp.com/sign-up/) - Generated [SDK Clients](www.mailslurp.com/docs/) - [Examples](github.com/mailslurp/examples) repository

The version of the OpenAPI document: 6.5.2

Generated by: openapi-generator.tech OpenAPI Generator version: 4.3.1

#MailSlurp API

#MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](www.mailslurp.com) - Get an [API KEY](app.mailslurp.com/sign-up/) - Generated [SDK Clients](www.mailslurp.com/docs/) - [Examples](github.com/mailslurp/examples) repository

The version of the OpenAPI document: 6.5.2

Generated by: openapi-generator.tech OpenAPI Generator version: 4.3.1

#MailSlurp API

#MailSlurp is an API for sending and receiving emails from dynamically allocated email addresses. It's designed for developers and QA teams to test applications, process inbound emails, send templated notifications, attachments, and more. ## Resources - [Homepage](www.mailslurp.com) - Get an [API KEY](app.mailslurp.com/sign-up/) - Generated [SDK Clients](www.mailslurp.com/docs/) - [Examples](github.com/mailslurp/examples) repository

The version of the OpenAPI document: 6.5.2

Generated by: openapi-generator.tech OpenAPI Generator version: 4.3.1

Constants

VERSION

Public Class Methods

configure() { |default| ... } click to toggle source

Customize default settings for the SDK using block.

MailSlurpClient.configure do |config|
  config.username = "xxx"
  config.password = "xxx"
end

If no block given, return the default Configuration object.

# File lib/mailslurp_client.rb, line 188
def configure
  if block_given?
    yield(Configuration.default)
  else
    Configuration.default
  end
end