Sha256: 70df6c716083ec604fdabfb86be3ea8ab584b170fa3e7dec3378910808dbaad8
Contents?: true
Size: 379 Bytes
Versions: 86
Compression:
Stored size: 379 Bytes
Contents
# frozen_string_literal: true require "resend/request" module Resend # Module responsible for wrapping Batch email sending API module Batch class << self # https://resend.com/docs/api-reference/emails/send-batch-emails def send(params = []) path = "emails/batch" Resend::Request.new(path, params, "post").perform end end end end
Version data entries
86 entries across 86 versions & 2 rubygems