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

推荐订阅源

钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
Apple Machine Learning Research
Apple Machine Learning Research
Last Week in AI
Last Week in AI
Blog — PlanetScale
Blog — PlanetScale
V
Visual Studio Blog
月光博客
月光博客
博客园 - 三生石上(FineUI控件)
博客园 - Franky
IT之家
IT之家
博客园 - 叶小钗
Engineering at Meta
Engineering at Meta
The GitHub Blog
The GitHub Blog
雷峰网
雷峰网
腾讯CDC
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
V
V2EX
人人都是产品经理
人人都是产品经理
MongoDB | Blog
MongoDB | Blog
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
宝玉的分享
宝玉的分享
博客园_首页
G
Google Developers Blog

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"
  }
}