I was able to fix mine by removing the "of service "SMS" line
on run {phoneNumber, message}
tell application "Messages"
send message to buddy phoneNumber --of service "SMS"
end tell
end run
Post
Replies
Boosts
Views
Activity
This also works
on run {phoneNumber, message}
tell application "Messages"
activate
send message to buddy phoneNumber of service 2 --1 =imessage, 2=SMS, did not try other numbers
end tell
end run