gpt4 book ai didi

php - 如何将 html 链接传递给 nexmo 短信响应

转载 作者:搜寻专家 更新时间:2023-10-31 21:03:40 26 4
gpt4 key购买 nike

订单确认后,我想在 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
]);

最佳答案

不可能将其包含在短信中,您只能将完整的 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>短信不支持标签

关于php - 如何将 html 链接传递给 nexmo 短信响应,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36493765/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com