Alphanumeric sender ID किसी नंबर के बजाय मैसेज के "from" फ़ील्ड में आपके ब्रांड का नाम डालता है. यह एकतरफ़ा है: recipients नाम देखते हैं पर reply नहीं कर सकते. कई देश इसका समर्थन करते हैं, और कई माँग करते हैं कि डिलीवर होने से पहले आप sender स्ट्रिंग pre-register करें.
import { BirdClient } from "@messagebird/sdk";
const bird = new BirdClient({ apiKey: process.env.BIRD_API_KEY! });
const code = generateOtp();
const { data, error } = await bird.sms.send({
from: "Bird",
to: "+15005550006",
text: `Your Bird verification code is ${code}. Reply STOP to opt out.`,
category: "authentication",
}).safe();
if (error) throw error;
console.log(data.id);
// → "sms_4kT01Lq2m..."
Today at 2:14 PM
जब नाम नंबर से बेहतर हो.
An alphanumeric sender ID is one of the four sender types on Bird SMS numbers, part of the broader Bird SMS API. Reach for it when recipients should see your brand rather than a phone number and you don't need them to reply: notifications, OTP, and one-off alerts where the message is the whole conversation.
Alphanumeric sender आपको क्या देता है.
from फ़ील्ड में ब्रांड, असली सीमाओं के साथ.
- 01
आपका ब्रांड, नंबर नहीं.
Recipients अंकों की स्ट्रिंग के बजाय एक पहचाना हुआ नाम देखते हैं, जिससे कोई transactional मैसेज एक नज़र में वैध लगता है.
- 02
केवल एकतरफ़ा.
There's no number behind the name for replies to route to. If a recipient texts back, it goes nowhere. Plan for a different channel or a separate number when you need an answer.
- 03
समर्थन देश पर निर्भर करता है.
कुछ गंतव्य alphanumeric senders को खुलकर स्वीकार करते हैं, कुछ इन्हें सीमित करते हैं, और कुछ इन्हें बिल्कुल अनुमति नहीं देते. किसी route के लिए सही sender हर देश के हिसाब से तय होने वाला फ़ैसला है.
- 04
अक्सर pre-registration की ज़रूरत.
कई देशों में डिलीवर होने से पहले sender स्ट्रिंग register करानी होती है, और unregistered IDs को दोबारा लिख दिया या हटा दिया जाता है. send के समय के बजाय send से पहले ही register करें.
- 05
स्ट्रिंग छोटी रखें.
Alphanumeric sender एक छोटा लेबल है, GSM नेटवर्क पर आमतौर पर 11 अक्षरों तक. कुछ ऐसा चुनें जो recipients के पहले से जाने-पहचाने ब्रांड नाम के करीब हो.
हर send पर sender सेट करें.
Where the destination permits it, you set the sender string on the send itself: pass your brand in the from field instead of a number. The send shape is the same one you use for every sender type; only the from value changes.
// "from" is your alphanumeric sender, not a number.
// Permitted per country; often pre-registered first.
const { data: message } = await bird.sms.send({
from: "Bird",
to: "+447700900123",
text: "Your verification code is 481920.",
category: "authentication",
}).safe();देश के नियम तय करते हैं क्या डिलीवर होगा.
Whether an alphanumeric sender works, and whether it has to be registered first, is set by each destination country and its carriers. Bird handles sender ID registration per country so the string you send is the string recipients see. When you need recipients to reply, use a long code, short code, or toll-free number instead.
Alphanumeric sender ID FAQ
Alphanumeric sender ID क्या है?
क्या कोई alphanumeric sender को reply कर सकता है?
Sender स्ट्रिंग कितनी लंबी हो सकती है?
क्या मुझे sender ID पहले register करना ज़रूरी है?
भेजने के दूसरे तरीके
Alphanumeric sender चार sender types में से एक है. बाकी की तुलना करें.
जहाँ पहुँचे वहाँ अपने ब्रांड से भेजें.
Alphanumeric sender ID, Bird SMS numbers surface पर एक sender type है. हर देश के लिए स्ट्रिंग register करें, उसे send पर सेट करें, और recipients तक ऐसे नाम से पहुँचें जिस पर वे भरोसा करते हैं.