惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Engineering at Meta
Engineering at Meta
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
宝玉的分享
宝玉的分享
量子位
Recent Announcements
Recent Announcements
Martin Fowler
Martin Fowler
J
Java Code Geeks
V
Visual Studio Blog
阮一峰的网络日志
阮一峰的网络日志
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
博客园 - 叶小钗
S
SegmentFault 最新的问题
B
Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
博客园 - 【当耐特】
小众软件
小众软件
The Cloudflare Blog
Y
Y Combinator Blog
I
InfoQ
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
GbyAI
GbyAI
IT之家
IT之家

Buttondown's blog

Email could have been X.400 times better The physicists who convinced Fermilab to send Brazil's emails Better in-app previews Analytics 3.0 Subscriber ID variables Comments! Send latest premium action Automation filtering Free API subscribers Surveys in automations Reply to replies Labels for RSS feeds How Jeremy Singer-Vine curates curious datasets for readers 2023 (and what's next) Email vs web content Sort by engagement Better gift subscriptions How Andy Dehnart built a career reviewing television New email template Email-based automations Opt-in reply tracking Automatic alt text More social network integrations Sort by metadata Overlarge image warnings Automation tag actions Pause emails mid-flight Search tags and automations Gift via automations Subscriber-driving emails
Cross-newsletter automations
Justin Duke · 2025-03-07 · via Buttondown's blog

Create subscribers in other newsletters via automations

Justin Duke

Justin Duke

March 7, 2025

You can now create subscribers in other newsletters that you have permissions for directly from your automations!

This feature is especially useful if you run multiple newsletters and want to automatically add subscribers from one newsletter to another based on specific triggers. For example, when someone subscribes to your main newsletter, you can automatically add them to your weekly digest newsletter as well.

Why not just use tags?

You might be wondering why you'd want to create subscribers in other newsletters rather than just using tags within a single newsletter. There are a few key reasons:

  1. Each newsletter can maintain its own distinct voice, design, and purpose while sharing subscribers.
  2. Targeted analytics: Get clear, separate performance metrics for each newsletter rather than trying to segment a single subscriber base.
  3. Subscriber choice: Gives subscribers more granular control over what content they receive, as they can unsubscribe from one newsletter while staying subscribed to others.

To set this up, simply create a new automation and choose the "Add to..." action. You'll be able to select the newsletter you'd like to add the subscriber to.

How does this work on the API side?

We've added a newsletter_id field to the metadata payload on Automation objects.

If you've got two newsletters:

[{
  "id": "123",
  "name": "Gob's Bees"
}, {
  "id": "456",
  "name": "The Magic Alliance"
}]

And you want to create an automation that adds subscribers to "The Magic Alliance" when they subscribe to "Gob's Bees", you can do so by setting the newsletter_id to "456" in the metadata payload:

{
  "type": "create_subscriber",
  "metadata": {
    "newsletter_id": "456"
  }
}