Releases: truemail-rb/truemail-crystal-client
Releases · truemail-rb/truemail-crystal-client
v0.2.1
What's Changed
- Technical/Update readme by @bestwebua in #14
- Technical/Update readme (#14) by @bestwebua in #15
- Technical/Add repo funding by @bestwebua in #16
- Technical/Add repo funding by @bestwebua in #17
- Technical/Update license by @bestwebua in #18
- Technical/Updated shard version by @bestwebua in #19
- truemail-crystal-client v0.2.1 by @bestwebua in #20
Full Changelog: v0.2.0...v0.2.1
v0.2.0
What's Changed
- Technical/Update shard dependencies by @bestwebua in #12
Full Changelog: v0.1.1...v0.2.0
v0.1.1: Technical/Update shard dependencies (#10)
- Updated shard development dependencies
- Updated github issue templates
- Updated shard version, documentation
v0.1.0
First version of Truemail Crystal client.
require "truemail-client"
configuration = Truemail::Client::Configuration.new do |config|
config.secure_connection = false
config.host = "example.com"
config.port = 80
config.token = "token"
end
Truemail::Client.validate("[email protected]", configuration)
=>
{
"date": "2020-05-05 19:30:42 +0200",
"email": "[email protected]",
"validation_type": "smtp",
"success": true,
"errors": null,
"smtp_debug": null,
"configuration": {
"validation_type_by_domain": null,
"whitelist_validation": false,
"whitelisted_domains": null,
"blacklisted_domains": null,
"smtp_safe_check": false,
"email_pattern": "default gem value",
"smtp_error_body_pattern": "default gem value"
}
}