メーリング リストを使用して、サード パーティ プロバイダー経由で SMS を送信したいと考えています。彼らが提供するコードサンプルは次のとおりです。
<%
' This simple ASP Classic code sample is provided as a starting point. Please extend your
' actual production code to properly check the response for any error statuses that may be
' returned (as documented for the send_sms API call).
username = "your_username"
password = "your_password"
recipient = "44123123123"
message = "This is a test SMS from ASP"
postBody = "username=" & Server.URLEncode(username) & "&password=" & Server.URLEncode(password) & "&msisdn=" & recipient & "&message=" & Server.URLEncode(message)
set httpRequest = CreateObject("MSXML2.ServerXMLHTTP")
httpRequest.open "POST", "http://bulksms.2way.co.za/eapi/submission/send_sms/2/2.0", false
httpRequest.SetRequestHeader "Content-Type", "application/x-www-form-urlencoded"
httpRequest.send postBody
Response.Write (httpRequest.responseText)
%>
GASでこれを行う方法がわかりません(私は本当にアマチュアプログラマです...)。グーグルから、「UrlFetchApp.fetch」のようなものを使用する必要があるようです。ヘルプや関連リンクをいただければ幸いです。前もって感謝します。