3

确认订单后,我想在 nexmo 短信响应中传递 html 链接。但它把它当作文本。

这是代码:

$api_key = '********';
$api_secret = '***************';
$number = '*************';
$message = 'Your order has been placed.';
$message .= "<a href='accounts/download_order/'>Download your tickets</a>";
$url = 'https://rest.nexmo.com/sms/json?' . http_build_query([
                                        'api_key' => $api_key,
                                        'api_secret' => $api_secret,
                                        'to' => $number,
                                        'from' => 'NexmoWorks',
                                        'text' => $message
                                    ]); 
4

1 回答 1

2

无法将其包含在 SMS 中,您只能将完整的 URL 包含为纯文本 - 该 URL 的显示方式将取决于最终用户的手机/操作系统。

下面的例子;

$url = 'https://rest.nexmo.com/sms/json?';
$url .= http_build_query([
    'api_key' => $api_key,
    'api_secret' => $api_secret,
    'to' => $number,
    'from' => 'NexmoWorks',
    'text' => $message
]); 

<a>短信不支持标签

于 2016-04-08T07:56:50.430 回答