Project

buchida

0.0
The project is in a healthy, maintained state
Ruby client for the buchida email API with CJK-first template support.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 5.0
~> 3.0
 Project Readme
buchida

Developer-first email API with CJK support

English | 한국어 | 日本語 | 中文

Gem version License: MIT


The official Ruby SDK for the buchida email API.

Installation

gem install buchida

Or add to your Gemfile:

gem "buchida"

Quick Start

require "buchida"

client = Buchida::Client.new("bc_live_xxxxxxxxxxxxxxxxxxxxx")

result = client.emails.send(
  from: "hello@yourdomain.com",
  to: "user@example.com",
  subject: "Welcome to buchida!",
  html: "<h1>Hello!</h1><p>Welcome aboard.</p>"
)

puts "Email sent: #{result['id']}"

Features

  • Ruby 3.2+
  • Zero dependencies (stdlib net/http)
  • Typed error handling

Documentation

License

MIT