Last active
December 5, 2017 07:12
-
-
Save bernardobarreto/b9186b79d9c161521a6476ea21aa63d9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Exemplo | |
def send_simple_email | |
RestClient.post "https://emaildelivery.com/api/v1/emails?token=123", | |
:to => "[email protected]", | |
:subject => "Hello", | |
:text => "Testing some EmailDelivery awesomeness!", | |
:send_in => 1.hour | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment