Is there a link similar to <a href="tel:...">
for text messages. The behavior would be similar but instead of calling the number it would prompt the user to send a text?
href link to send text message?
Asked Answered
Possible duplicate of SMS URL on Android –
Protect
Possible duplicate of How to pre-populate the sms body text via an html link –
Haroun
If my answer resolved the question could you accept it to close the question? –
Jinni
try using this:
<a href="sms://+14035550185?body=I%27m%20interested%20in%20your%20product.%20Please%20contact%20me.">Send a SMS message</a>
You can use the body parameter to queue a message in the text.
Very cool. I think this answer is underrated. I had no idea that you could do this with an <a> tag. –
Favors
Try using this sms formats, which have tested on mobile browser too:
<!-- With phone number -->
<a href="sms:+150000000?body=Share%20this%20message%20on%20sms">Send SMS Message</a>
<!-- Without phone number -->
<a href="sms:?&body=Share%20this%20message%20on%20sms">Send SMS Message</a>
Your answer could be improved with additional supporting information. Please edit to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers in the help center. –
Huguenot
The basic format of text messages link is
<a href="sms:...">
On my Mac, latest OS, simply opens Messenger and I have to type everything, phone, message, etc. Better than nothing but does not pre-load the number or message. It does deliver the message.
Is there some (html/php?) code to actually do this as with email, e.g., by looking up recipient in a directory? That would require only typing (or perhaps speaking on a phone) the message. Could do but hate to rediscover the wheel.
If you have a new question, please ask it by clicking the Ask Question button. Include a link to this question if it helps provide context. - From Review –
Decimal
WhatsApp provides an option to send text.
<a href="whatsapp://send?text=The text to share!" data-action="share/whatsapp/share">Share via Whatsapp</a>
© 2022 - 2024 — McMap. All rights reserved.