我正在使用curl,并且发现如果主题行中有前导(
,我会收到以下错误消息:
“ message”:“至少需要'text'或'html'参数之一 指定”
这是我的代码在curl中的样子:
curl --verbose \
-s \
--user \
api:key-example \
https://api.testtext \
-F \
from="test <support@test.com>" \
-F \
to="atar@test.com" \
-F \
subject="(this is a test)" \
-F \
text="this is a text example" \
exit
请协助解决此问题。我一直在尝试修复它。