- Notifications
You must be signed in to change notification settings - Fork10
Mailosaur Ruby Client Library
License
mailosaur/mailosaur-ruby
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Mailosaur lets you automate email and SMS tests as part of software development and QA.
- Unlimited test email addresses for all - every account gives users an unlimited number of test email addresses to test with.
- End-to-end (e2e) email and SMS testing Allowing you to set up end-to-end tests for password reset emails, account verification processes and MFA/one-time passcodes sent via text message.
- Fake SMTP servers Mailosaur also provides dummy SMTP servers to test with; allowing you to catch email in staging environments - preventing email being sent to customers by mistake.
This guide provides several key sections:
- Get Started
- Creating an account
- Test email addresses with Mailosaur
- Find an email
- Find an SMS message
- Testing plain text content
- Testing HTML content
- Working with hyperlinks
- Working with attachments
- Working with images and web beacons
- Spam checking
You can find the fullMailosaur documentation on the website.
If you get stuck, just contact us atsupport@mailosaur.com.
gem install mailosaur
Then import the library into your code. The value forYOUR_API_KEY
is covered in the next step (creating an account):
require'mailosaur'mailosaur=Mailosaur::MailosaurClient.new("YOUR_API_KEY")
This library is powered by the Mailosauremail & SMS testing API. You can easily check out the API itself by looking at ourAPI reference documentation or via our Postman or Insomnia collections:
Create afree trial account for Mailosaur via the website.
Once you have this, navigate to theAPI tab to find the following values:
- Server ID - Servers act like projects, which group your tests together. You need this ID whenever you interact with a server via the API.
- Server Domain - Every server has its own domain name. You'll need this to send email to your server.
- API Key - You can create an API key per server (recommended), or an account-level API key to use across your whole account.Learn more about API keys.
Mailosaur gives you anunlimited number of test email addresses - with no setup or coding required!
Here's how it works:
- When you create an account, you are given a server.
- Every server has its ownServer Domain name (e.g.
abc123.mailosaur.net
) - Any email address that ends with
@{YOUR_SERVER_DOMAIN}
will work with Mailosaur without any special setup. For example:build-423@abc123.mailosaur.net
john.smith@abc123.mailosaur.net
rAnDoM63423@abc123.mailosaur.net
- You can create more servers when you need them. Each one will have its own domain name.
Can't use test email addresses? You can alsouse SMTP to test email. By connecting your product or website to Mailosaur via SMTP, Mailosaur will catch all email your application sends, regardless of the email address.
In automated tests you will want to wait for a new email to arrive. This library makes that easy with themessages.get
method. Here's how you use it:
require'mailosaur'mailosaur=Mailosaur::MailosaurClient.new("API_KEY")# See https://mailosaur.com/app/project/apiserver_id="abc123"server_domain="abc123.mailosaur.net"criteria=Mailosaur::Models::SearchCriteria.new()criteria.sent_to="anything@" +server_domainemail=mailosaur.messages.get(server_id,criteria)puts(email.subject)# "Hello world!"
- Sets up an instance of
MailosaurClient
with your API key. - Waits for an email to arrive at the server with ID
abc123
. - Outputs the subject line of the email.
Important: Trial accounts do not automatically have SMS access. Please contact our support team to enable a trial of SMS functionality.
If your account hasSMS testing enabled, you can reserve phone numbers to test with, then use the Mailosaur API in a very similar way to when testing email:
require'mailosaur'mailosaur=Mailosaur::MailosaurClient.new("API_KEY")server_id="abc123"criteria=Mailosaur::Models::SearchCriteria.new()criteria.sent_to="4471235554444"sms=mailosaur.messages.get(server_id,criteria)puts(sms.text.body)
Most emails, and all SMS messages, should have a plain text body. Mailosaur exposes this content via thetext.body
property on an email or SMS message:
puts(message.text.body)# "Hi Jason, ..."ifmessage.text.body.include?"Jason"puts("Email contains 'Jason'")end
You may have an email or SMS message that contains an account verification code, or some other one-time passcode. You can extract content like this using a simple regex.
Here is how to extract a 6-digit numeric code:
puts(message.text.body)# "Your access code is 243546."match=message.text.body.match(/([0-9]{6})/)puts(match[0])# "243546"
Most emails also have an HTML body, as well as the plain text content. You can access HTML content in a very similar way to plain text:
puts(message.html.body)# "<html><head ..."
If you need to traverse the HTML content of an email. For example, finding an element via a CSS selector, you can use thenokogiri library.
gem install nokogiri
require'nokogiri'# ...@doc=Nokogiri::HTML(message.html.body)el=@doc.css(".verification-code")verification_code=el.textputsverification_code# "542163"
When an email is sent with an HTML body, Mailosaur automatically extracts any hyperlinks found within anchor (<a>
) and area (<area>
) elements and makes these viable via thehtml.links
array.
Each link has a text property, representing the display text of the hyperlink within the body, and an href property containing the target URL:
# How many links?puts(message.html.links.length)# 2first_link=message.html.links[0]puts(first_link.text)# "Google Search"puts(first_link.href)# "https://www.google.com/"
Important: To ensure you always have valid emails. Mailosaur only extracts links that have been correctly marked up with<a>
or<area>
tags.
Mailosaur auto-detects links in plain text content too, which is especially useful for SMS testing:
# How many links?puts(message.text.links.length)# 2first_link=message.text.links[0]puts(first_link.href)# "https://www.google.com/"
If your email includes attachments, you can access these via theattachments
property:
# How many attachments?puts(message.attachments.length)# 2
Each attachment contains metadata on the file name and content type:
first_attachment=message.attachments[0]puts(first_attachment.file_name)# "contract.pdf"puts(first_attachment.content_type)# "application/pdf"
Thelength
property returns the size of the attached file (in bytes):
first_attachment=message.attachments[0]puts(first_attachment.length)# 4028
Thehtml.images
property of a message contains an array of images found within the HTML content of an email. The length of this array corresponds to the number of images found within an email:
# How many images in the email?puts(message.html.images.length)# 1
Emails will often contain many images that are hosted elsewhere, such as on your website or product. It is recommended to check that these images are accessible by your recipients.
All images should have an alternative text description, which can be checked using thealt
attribute.
image=message.html.images[0]puts(image.alt)# "Hot air balloon"
A web beacon is a small image that can be used to track whether an email has been opened by a recipient.
Because a web beacon is simply another form of remotely-hosted image, you can use thesrc
attribute to perform an HTTP request to that address:
image=message.html.images[0]puts(image.src)# "https://example.com/s.png?abc123"# Make an HTTP call to trigger the web beaconuri=URI(image.src)Net::HTTP.start(uri.host,uri.port,:use_ssl=>uri.scheme =='https')do |http|request=Net::HTTP::Get.newuriresponse=http.requestrequest# Net::HTTPResponse objectputs(response.code)# 200end
You can perform aSpamAssassin check against an email. The structure returned matches thespam test object:
result=mailosaur.analysis.spam(message.id)puts(result.score)# 0.5forrinresult.spam_filter_results.spam_assassindoputs(r.rule)puts(r.description)puts(r.score)end
You must have the following prerequisites installed:
Install all development dependencies:
bundle install
The test suite requires the following environment variables to be set:
export MAILOSAUR_BASE_URL=https://mailosaur.com/export MAILOSAUR_API_KEY=your_api_keyexport MAILOSAUR_SERVER=server_id
Run all tests:
bundleexec raketest
Lint code (via Rubocop):
bundleexec rubocop
You can get us atsupport@mailosaur.com
About
Mailosaur Ruby Client Library