<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: SendFleet</title>
    <description>The latest articles on DEV Community by SendFleet (@sendfleet).</description>
    <link>https://dev.to/sendfleet</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3930499%2F8fd56927-b741-4db9-a80f-bf380838ef26.png</url>
      <title>DEV Community: SendFleet</title>
      <link>https://dev.to/sendfleet</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/sendfleet"/>
    <language>en</language>
    <item>
      <title>Quickstart BYOC - SendFleet</title>
      <dc:creator>SendFleet</dc:creator>
      <pubDate>Thu, 14 May 2026 05:48:04 +0000</pubDate>
      <link>https://dev.to/sendfleet/quickstart-byoc-sendfleet-53j8</link>
      <guid>https://dev.to/sendfleet/quickstart-byoc-sendfleet-53j8</guid>
      <description>&lt;p&gt;For the BYOC path you need:&lt;br&gt;
→ An AWS account with SES approved for&lt;br&gt;
production access&lt;br&gt;
(out of sandbox mode)&lt;br&gt;
→ A domain you control (to add DNS records)&lt;br&gt;
→ Access to create IAM roles in your AWS account&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Create a SendFleet account&lt;br&gt;
Register at &lt;a href="https://sendfleet.net/register/" rel="noopener noreferrer"&gt;sendfleet.net/register&lt;/a&gt;. Email verification is required before you can send. The Starter plan is free with 50 BYOC emails/month - no credit card needed.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Create an IAM role in AWS&lt;br&gt;
In your AWS console, go to IAM → Roles → Create role. Choose Custom trust policy and paste the trust policy shown in your account settings → BYOC section. It will include your unique ExternalId automatically. Attach the required SES permissions (also listed in settings). See the full guide in BYOC Setup →&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Connect your IAM role&lt;br&gt;
Go to Dashboard → Settings. Paste your IAM Role ARN and select your SES region. Click Validate &amp;amp; save. We'll verify that we can assume the role and that your SES account is out of sandbox mode.&lt;br&gt;
Example Role ARN&lt;br&gt;
arn:aws:iam::123456789012:role/SendFleet-BYOC-Role&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Add and verify a sending domain&lt;br&gt;
Go to Dashboard → Domains → Add BYOC domain. Enter your root domain (e.g. acme.com). We'll register the identity in your SES and show you the DNS records to add. Once the TXT ownership record propagates, click Verify ownership - then Verify DKIM. DKIM verification is required before any email can be sent.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Generate an API key&lt;br&gt;
Go to Dashboard → API Keys → New key. Give it a name (e.g. "Production"). The full secret key is shown exactly once - copy it and store it in your environment variables or secrets manager.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Send your first email&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;curl -X POST &lt;a href="https://sendfleet.net/api/send/" rel="noopener noreferrer"&gt;https://sendfleet.net/api/send/&lt;/a&gt; \&lt;br&gt;
  -H "X-API-Key: YOUR_API_KEY" \&lt;br&gt;
  -H "Content-Type: application/json" \&lt;br&gt;
  -d '{&lt;br&gt;
    "to": "&lt;a href="mailto:user@example.com"&gt;user@example.com&lt;/a&gt;",&lt;br&gt;
    "from_email": "&lt;a href="mailto:hello@acme.com"&gt;hello@acme.com&lt;/a&gt;",&lt;br&gt;
    "from_name": "Acme",&lt;br&gt;
    "subject": "Welcome aboard",&lt;br&gt;
    "message": "Thanks for signing up!"&lt;br&gt;
  }'&lt;/p&gt;

&lt;p&gt;A 200 OK means your email has been accepted and queued. Delivery happens asynchronously.&lt;/p&gt;

&lt;p&gt;200 OK&lt;br&gt;
{&lt;br&gt;
  "success":    true,&lt;br&gt;
  "message":    "Email queued for delivery via your SES account.",&lt;br&gt;
  "message_id": "1a2b3c4d-5e6f-7890-abcd-ef1234567890",&lt;br&gt;
  "mode":       "byoc"&lt;br&gt;
}&lt;/p&gt;

</description>
      <category>aws</category>
      <category>devops</category>
      <category>infrastructure</category>
      <category>tutorial</category>
    </item>
  </channel>
</rss>
