Suppressions

उन पतों पर मेल भेजना बंद करें जो आपको नुकसान पहुंचाते हैं।

इतने समय में सेट अप करें:
Cursor

हर बाउंस, शिकायत और अनसब्सक्राइब अपने आप प्राप्तकर्ता को आपकी suppression सूची में जोड़ देता है, ताकि आप उन्हें दोबारा मेल न करें। Suppression रिवर्सिबल है, API के जरिए क्वेरी की जा सकती है, और ट्रांज़ैक्शनल तथा मार्केटिंग सेंड दोनों पर लागू होती है।

welcome.tsx
200 · 1.2s
import { BirdClient } from "@messagebird/sdk";
import { render } from "@react-email/render";
import { WelcomeEmail } from "./emails/welcome";

const bird = new BirdClient({ apiKey: process.env.BIRD_API_KEY! });

const { data, error } = await bird.email.send({
  from:    "Bird <hello@bird.com>",
  to:      ["ada@example.com"],
  subject: "Your invite is ready",
  html:    await render(<WelcomeEmail name="Ada" />),
}).safe();

if (error) throw error;
console.log(data.id);
// → "em_2bX91Yk8h..."

आपकी प्रतिष्ठा पर सबसे बड़ा एकल प्रभाव।

Suppression is built into the Bird Email API, not a list you maintain by hand. Mailbox providers punish senders who keep hitting dead addresses and spam-trap complaints; Those sends are stopped for you, automatically, the moment a recipient goes bad.

Suppression आपको पांच तरीकों से बचाता है।

अपने आप, रिवर्सिबल, और क्वेरी करने योग्य।

  1. 01

    बाउंस + शिकायत पर अपने आप।

    हार्ड बाउंस, स्पैम शिकायतें और अनसब्सक्राइब प्राप्तकर्ता को अपने आप सप्रेस कर देते हैं। कोई कोड की जरूरत नहीं।

  2. 02

    रिवर्सिबल।

    कुछ भी स्थायी नहीं है। अगर कोई पता ठीक हो जाए तो उसे हटा दें, और फिर से उस पर मेल करना शुरू करें।

  3. 03

    मैनुअल एंट्री।

    पते खुद जोड़ें: जैसे कोई ज्ञात-खराब सूची जिसे आप किसी दूसरे प्रोवाइडर से इम्पोर्ट कर रहे हैं।

  4. 04

    API के जरिए क्वेरी करने योग्य।

    List the whole thing, filter by address or reason, add an entry, or delete one by its record id, so your own systems stay in sync.

  5. 05

    एक सूची, हर सेंड।

    Suppression ट्रांज़ैक्शनल और मार्केटिंग मेल दोनों पर लागू होती है, ताकि कोई कैंपेन उस पते पर दोबारा मेल न कर सके जिस पर अभी-अभी कोई रसीद बाउंस हुई थी।

डिफ़ॉल्ट रूप से अपने आप, नियंत्रण आपके हाथ में।

You never have to touch the list for it to work; bounces and complaints suppress on their own. When you do need to, the whole list is an API: add an address you already know is bad, filter by address or reason, or delete a record to reinstate a recipient that recovered. The bird CLI covers the reads and the removals, and an agent reaches the same two over MCP.

suppressions.sh
bird CLI
# Look up why an address is on the list.
$ bird email suppressions list --email ada@example.com \
    | jq -c '.data[] | {id, reason, applies_to}'

{"id":"sup_01krdgeqcxet5s7t44vh8rt9mg","reason":"hard_bounce",
 "applies_to":"all"}

# Reinstate one that recovered, by record id.
$ bird email suppressions remove sup_01krdgeqcxet5s7t44vh8rt9mg --yes

चार कारण, दो दायरे।

हर suppression हर सेंड को ब्लॉक नहीं करती। जिस प्राप्तकर्ता ने मार्केटिंग से अनसब्सक्राइब किया है, उसे फिर भी अपना पासवर्ड रीसेट मिलता है: शिकायतें और अनसब्सक्राइब मार्केटिंग तक सीमित होते हैं, जबकि हार्ड बाउंस और मैनुअल एड सब कुछ ब्लॉक कर देते हैं।

कारणकिससे ट्रिगर हुआब्लॉक करता है
hard_bounceएक स्थायी बाउंससभी मेल (ट्रांज़ैक्शनल + मार्केटिंग)
complaintएक स्पैम शिकायतकेवल मार्केटिंग
unsubscribeएक सूची या वन-क्लिक अनसब्सक्राइबकेवल मार्केटिंग
manualआप, API या dashboard के जरिएसभी मेल (ट्रांज़ैक्शनल + मार्केटिंग)

docs में और गहराई से जानें।

पढ़ें कि अपने आप और मैनुअल suppression कैसे काम करते हैं, suppressions गाइड में, और यह बड़ी तस्वीर में कैसे फिट होता है, deliverability गाइड में।

दुनिया का लगभग 40% कमर्शियल email पहले से ही Bird पर चलता है।

ऐसे इन्फ्रास्ट्रक्चर पर ट्रांज़ैक्शनल और मार्केटिंग email जिसे हमने एक दशक से चलाया है। Suppression, Bird Email API की एक क्षमता है: sending, deliverability, dedicated IPs, और analytics इसके साथ आते हैं।

एक चैनल से शुरुआत करें।
तैयार होने पर बाकी जोड़ें।

एक test API key तुरंत आपकी है। जब आप payment method जोड़ते हैं और sender verify करते हैं, तब production अनलॉक हो जाता है।

Claude Code, Cursor या Codex इस्तेमाल कर रहे हैं? एक setup prompt कॉपी करें और आपका agent आपके लिए Bird CLI और skills इंस्टॉल कर देगा। अपना चुनें:

Cursor