
Security News
Oxlint Introduces Type-Aware Linting Preview
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Ruby wrapper for Maileon email marketing software API.
Add this line to your application's Gemfile:
gem 'maileon'
And then execute:
$ bundle
Or install it yourself as:
$ gem install maileon
Below API requests are currently supported by the gem:
api_key = "e30994fg0fig6t049u42j3gblgsr59043"
maileon = Maileon::API.new(api_key, true)
maileon.ping
api_key = "e30994fg0fig6t049u42j3gblgsr59043"
maileon = Maileon::API.new(api_key, true)
attribs = {
:email => "subscriber@email.com"
}
body = {
:email => "subscriber@email.com",
:custom_fields => {
:CUSTOM_FIELD_DEFINED_AT_MAILEON => "1"
},
:standard_fields => {
:SALUTATION => "Herr",
:GENDER => "m",
:FIRSTNAME => "Max",
:LASTNAME => "Mustermann",
:LOCALE => "de_DE",
:CITY => "Hamburg",
:COUNTRY => "Germany",
:ZIP => "22675",
:ADDRESS => "Friedensallee",
:HNR => "9"
}
}
maileon.create_contact(attribs, body)
api_key = "e30994fg0fig6t049u42j3gblgsr59043"
maileon = Maileon::API.new(api_key, true)
attribs = {
:email => "subscriber@email.com"
}
maileon.delete_contact(attribs)
git checkout -b my-new-feature
)guard
in parallel to automatically run your testsgit commit -am 'Add some feature'
)git push origin my-new-feature
)Copyright © 2015 Interactive Pioneers GmbH. Licenced under GPLv3.
FAQs
Unknown package
We found that maileon 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
Oxlint’s new preview brings type-aware linting powered by typescript-go, combining advanced TypeScript rules with native-speed performance.
Security News
A new site reviews software projects to reveal if they’re truly FOSS, making complex licensing and distribution models easy to understand.
Security News
Astral unveils pyx, a Python-native package registry in beta, designed to speed installs, enhance security, and integrate deeply with uv.