Reputation: 286
I want to send an SMS with this code:
<a href="sms:؟body=sdsadweqw">Invite a friend by SMS</a>
but it doesn't work -- I get an SMS without body (it's empty).
What could the problem be?
Upvotes: 1
Views: 3686
Reputation: 31
It all depends on your email client, some email clients only take the phone number and ignore anything after.
on iOS if you want to add body, try adding ";" instead of "?"
sms://000-000-0000;body=hello+world
Upvotes: 0
Reputation: 5457
<a href="sms:+1234567890?body=message">SMS Link</a>
You have no number and it looks like you're using ؟
instead of a question mark ?
.
Upvotes: 4