从我的twilio帐户收到邮件时。 我得到了像400012或641011这样的不同号码的消息 但是,当我收到消息
时,我用来发送消息的twilio号码不会显示在我的收件箱中我可以做些什么,以便每当有人收到我的twilio号码留言时收件箱中的号码也是twilio号码吗?
var client = new twilio.RestClient(twilio_account_sid, twilio_auth_token);
client.messages.create({
body: msg,
to: to, // Text this number
from: twilio_number // From a valid Twilio number
}, function(err, message) {
if(err) {
console.error(err.message);
}else{
console.log("here send sms ... ... ...");
}
});
我的代码很简单,如上所述
答案 0 :(得分:1)
Twilio开发者传道者在这里。
从Twilio号码向某些国家/地区发送消息时存在一些限制。印度特别严格,不会让您保留原始号码。用户仍然可以向您的Twilio号码发送消息,他们只会从您分享的缩短号码中接收消息。
您可以通过查看this support article并查看SMS guidelines for India来了解向印度发送邮件的限制。
您需要发送到的其他国家/地区的限制将有所不同。例如,in Malaysia your long code phone number is preserved。在此处查看您所在国家/地区的限制:https://www.twilio.com/sms/guidelines
让我知道这是否有帮助。