Extract emails from multiline string
CLI for installing React Grab and configuring its activation behavior.
Select context for coding agents directly from your website
A resend component for Convex.
tsParticles grab external interaction
Components for building HTML emails in Builder
Twilio SendGrid NodeJS API client
Twilio SendGrid NodeJS mail service
Automatically opens your browser and iOS Simulator to preview Node.js email messages sent with Nodemailer. Made for Forward Email and Lad. Cross-browser and cross-platform email testing.
A framework for responsive emails
A live preview of your emails right in your browser.
GOV.UK Notify Node.js client
Easy as cake e-mail sending from your Node.js applications
Official Node.js client library for the Postmark HTTP API - https://www.postmarkapp.com
send text/html emails and attachments (files, streams and strings) from node.js to any smtp server
Gmail MCP server with auto authentication support
Get all email addresses in a string
NestJS - a mailer module (@mailer)
Easily create highly customizable particle animations and use them as animated backgrounds for your website. Ready to use components available also for React, Vue.js (2.x and 3.x), Angular, Svelte, jQuery, Preact, Riot.js, Inferno.
Easily configure your Strapi application to send emails.
A live preview of your emails right in your browser.
Twilio SendGrid NodeJS internal helpers
A library to convert URLs to a clickable HTML anchor elements
Maizzle is a framework that helps you quickly build HTML emails with Tailwind CSS.
Grabs unread emails for Gmail, marks them as read, applies a given label and archives them.
Use this gem for BTC price discovery; you can also configure email notifications at price levels of your choosing.
== DESCRIPTION: Creates a configuration controller and model that can be used to quickly create configuration table for your system so you can store system-wide variables that you'd like the user to be able to set. This gem contains a generator to create a simple configuration model, migration, and interface for your application, complete with working tests. == FEATURES * Generates the controller, model, and the associated files. * You can specify the model name and set the fields for the migrations via the generator. == SYNOPSIS: === Setup and overview Generate a new configuration system for your application by executing the generator from the root of your application. ruby script\generate rails_config_model Configuration You can also specify the model fields much like the scaffold_resource generator ruby script/generate rails_config_model Configuration contact_email:string site_name:string welcome_message:text max_number_of_events:integer Once installed, you modify the generated migration to include the fields you want to configure. There are a few defaults there to give you an idea. The generator will create a controller mounted at /configuration so you can edit your configurations. Modify this as needed to provide for security. === The Edit form The application's edit form uses the *form* helper method to auto-generate the fields. This may not be optimal and you may wish to actually write your own view instead. See app/views/configuration/edit.rhtml for more details. === Usage Configuration is simply a model for this table. It is designed to handle a single row of a table, and so additional rows cannot be created. If you have a table that looks like this: id contact_email site_name welcome_message max_number_of_events You simply grab the row from the table @configuration = Configuration.load and then grab the values out. email = @configuration.contact_email Or save new values @configuration = Configuration.load @configuration.welcome_message = "This is the default message." @configuraiton.save