リッチなメールをシンプルに配信しよう

スタンダードな技術に基づいた開発者のためのメールプラットフォーム

darklight

オープンスタンダードな技術で構成されたシンプルなアーキテクチャ

何も覚える必要はありません。最小のコストで最大のエンゲージメントを構築しよう

{

subject: "Cool Subject"
body: "# Headline This is a **Markdown** text

![image](https://picsum.photos/500/300)

| Title | Author | CreatedAt | | --- | --- | --- | | Data | Data | Data |"

to: [

{ email: "[email protected]" },

{ email: "[email protected]", name: "John Adams" },

]

}

メールもMarkdownで

MarkdownテキストをリッチなHTMLメールに変換

{

await fetch("https://vell-letter.com/api/send/v1",

{

method: "POST"

headers: { auth-key: <KEY> }

body: JSON.stringify({

subject: "Cool Subject"
body: "# Headline This is a **Markdown** text
to: [

{ email: "[email protected]" },

{ email: "[email protected]", name: "John Adams" },

]

})

})

}

RESTfulでどんな言語や環境でも

パッケージ不要。あらゆるバックエンドからPOSTするだけ

paths:
/send/v1:
post:
summary: Send Email
security:

- auth_key: []

requestBody:
required: true
content:
application/json:
schema:
$ref: #/components/schemas/CONTENT_DATA
responses:
'200':
content:
application/json:
schema:
$ref: #/components/schemas/SEND_RESULT

AIでスキーマやクライアントを生成

ChatGPT や Claude にOpenAPIドキュメントを渡すだけで、お好みの言語のコードを自動生成

Examples

{

body:

"# Basic Markdown Markdownは文書を書くための**シンプルなフォーマット**の言語です。以下は基本的な構文の例です: ## Headings `# Heading 1` `## Heading 2` `### Heading 3` ## Emphasis - ** Bold **: `**bold**` - * Italic *: `*italic*` ## Lists - Bulleted list: `- Item` 1. Numbered list: `1. Item` ## Links [Link](https://example.com): `[Link](https://example.com)` ## Code Blocks ``` console.log("Hello, Markdown!") ``` ## Tables | Header 1 | Header 2 | | --- | --- | | Row 1, Col 1 | Row 1, Col 2 | | Row 2, Col 1 | Row 2, Col 2 | >Markdownはプレーンテキストで簡単に書くことができ、シンプルでありながらリッチなドキュメントを作成するのに強力です。ユーザーフレンドリーで、幅広く使われています。"

subject:

"Example 1"

theme:

0

style:

0

to:

[

]

dark:

false

}

Basic Markdown

Markdownは文書を書くためのシンプルなフォーマットの言語です。以下は基本的な構文の例です:

Headings

# Heading 1

## Heading 2

### Heading 3

Emphasis

  • Bold: **bold**
  • Italic: *italic*

Lists

  • Bulleted list: - Item
  1. Numbered list: 1. Item

Links

Link: [Link](https://google.com)

Code Blocks

console.log('Hello, Markdown!')

Tables

Header 1 Header 2
Row 1, Col 1 Row 1, Col 2
Row 2, Col 1 Row 2, Col 2

Markdownはプレーンテキストで簡単に書くことができ、シンプルでありながらリッチなドキュメントを作成するのに強力です。ユーザーフレンドリーで、幅広く使われています。

To change your receiving preferences, click here

© 2024 Vell

ai

AI フレンドリー

OpenAPI、Markdown、REST。

AIが熟知しているオープンな技術で構成されているため、運用の大部分をAIに任せることも可能。

Start Emailing With Vell