قمت بعمل هذا الكود بناء على موقع اجنبى لارسال واتس من اكسس ولكن يقوم بارسال الواتس برجاء التوضيح
Private Sub send_Click()
Dim strurl As String
Dim strdata As String
Dim struser As String
Dim strpwd As String
Dim objrequest As ServerXMLHTTP60
strurl = "https://api.twilio.com/2010-04-01/Accounts/AC844a9cca973d4a95a55b0e9198255350/Messages.json"
strdata = "From=whatsapp:14155238886"
strdata = strdata & "&To=whatsapp:" & Me!whatsAppto
strdata = strdata & "&body=" & Me!whatsAppmsg
struser = "sid id"
strpwd = "token"
Set objrequest = New ServerXMLHTTP60
objrequest.Open "POSt", strurl, False, struser, strpwd
objrequest.setRequestHeader "Content-type", "application/x-www-form-urlencoded"
objrequest.send strdata
Debug.Print objrequest.responseBody
End Sub