【发布时间】:2020-09-28 12:44:07
【问题描述】:
使用 WordPress PHP 和 Twilio,如何使用包含媒体的消息回复入站 SMS。具体来说,我想用图像回复入站消息。我无法找到将媒体添加到响应中的方法。如何将图像添加到下面使用的格式?
function trigger_receive_sms($request) {
echo header('content-type: text/xml');
echo ('<?xml version="1.0" encoding="UTF-8"?>');
echo ('<Response>');
echo ('<Message>Hello there, did you get the image?</Message>');
echo ('</Response>');
}
使用本指南作为整体基础:https://www.twilio.com/blog/2017/09/receive-sms-wordpress-php-plugin.html
【问题讨论】: