Files
sim/apps/docs/content/docs/ja/tools/resend.mdx
Waleed 9a6a6fdacb improvement(docs): updated with new ss, docs script updated to copy items from main app into docs for tools (#1918)
* improvement(docs): updated script to copy over icons, cleanup unnecessary pages

* updated script with auto-icon generation

* ignore translations, only icons changed

* updated images

* updated i18n.lock

* updated images
2025-11-12 01:15:23 -08:00

61 lines
3.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
title: Resend
description: Resendでメールを送信。
---
import { BlockInfoCard } from "@/components/ui/block-info-card"
<BlockInfoCard
type="resend"
color="#181C1E"
/>
{/* MANUAL-CONTENT-START:intro */}
[Resend](https://resend.com/)は、開発者がトランザクションメールやマーケティングメールを簡単に送信できるように設計された最新のメールサービスです。シンプルで信頼性の高いAPIとダッシュボードを提供し、メール配信、テンプレート、分析を管理できるため、アプリケーションやワークフローにメール機能を統合するための人気の選択肢となっています。
Resendでは以下のことが可能です
- **トランザクションメールの送信**: パスワードリセット、通知、確認メールなどを高い配信率で送信
- **テンプレート管理**: 一貫したブランディングとメッセージングのためのメールテンプレートを作成・更新
- **分析の追跡**: 配信率、開封率、クリック率を監視してメールパフォーマンスを最適化
- **簡単な統合**: わかりやすいAPIとSDKを使用してアプリケーションとシームレスに統合
- **セキュリティの確保**: 堅牢な認証とドメイン検証によりメールの信頼性を保護
Simでは、Resend統合によりエージェントがプログラムでメールを送信し、自動化されたワークフローの一部として活用できます。これにより、通知、アラート、カスタムメッセージをSim搭載エージェントから直接送信するようなユースケースが可能になります。SimとResendを連携することで、コミュニケーションタスクを自動化し、手動介入なしでタイムリーかつ確実なメール配信を実現できます。この統合はResend APIキーを活用し、認証情報を安全に保ちながら強力なメール自動化シナリオを実現します。
{/* MANUAL-CONTENT-END */}
## 使用方法
Resendをワークフローに統合します。メールを送信できます。APIキーが必要です。
## ツール
### `resend_send`
あなた自身のResend APIキーと送信元アドレスを使用してメールを送信する
#### 入力
| パラメータ | 型 | 必須 | 説明 |
| --------- | ---- | -------- | ----------- |
| `fromAddress` | string | はい | 送信元メールアドレス |
| `to` | string | はい | 受信者メールアドレス |
| `subject` | string | はい | メールの件名 |
| `body` | string | はい | メール本文 |
| `contentType` | string | いいえ | メール本文のコンテンツタイプテキストまたはHTML |
| `resendApiKey` | string | はい | メール送信用のResend APIキー |
#### 出力
| パラメータ | 型 | 説明 |
| --------- | ---- | ----------- |
| `success` | boolean | メールが正常に送信されたかどうか |
| `to` | string | 受信者メールアドレス |
| `subject` | string | メールの件名 |
| `body` | string | メール本文 |
## 注意事項
- カテゴリー: `tools`
- タイプ: `resend`