![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
This library allows to have a disposable email address service built on top of subset of Mailgun Events and Storage API. It does not require creating email address in advance. We use this library as a part of our Cucumber Testing Framework to validate that emails are actually get sent to end users. Also every test case should be independent from other test cases - email addresses should be unique every time.
Add this line to your application's Gemfile:
gem 'mailgun-mailbox'
And then execute:
$ bundle
Or install it yourself as:
$ gem install mailgun-mailbox
See features/steps_definitions.rb for detailed example
require 'mailgun/mailbox'
#set thing up
#Mailgun::Mailbox.set_config(<your mailgun api key>, <your mailgun domain>)
#generate random email address with your mailgun domain
@email_address = Mailgun::Mailbox.generate_email()
#Here your app will send email message with specific subject to generated email address
#...
email = Mailgun::Mailbox.wait_for_email(<know subject>, email_address)
#print email body
puts email
#delete all emails sent to address:
Mailgun::Mailbox.delete_emails_to!(email_address)
$ cucumber MAILGUN_API_KEY=<your api key> MAILGUN_HOST=<your domain name registered with mailgun> SMTP_PASSWORD=<smtp password provided by mailgun for your domain>
git checkout -b my-new-feature
)git commit -am 'Add some feature'
)git push origin my-new-feature
)FAQs
Unknown package
We found that mailgun-mailbox demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.