Calling a special (non-HTTP) URL from the form_valid method of a Django class-based view
There's this HTML trick where if you do <a href="sms:14085551212?body=Hello my friend">New SMS Message</a> , clicking New SMS Message opens up the phone's native SMS app and pre-fills the To field with the number provided (1-408-555-1212 in this case), and the body with the message provided ( Hello my friend in this case). Is there any way I can call this same href string from the form_valid method of a Django class-based view? To be exact, in this form_valid method I'm receiving a POST variable that is a uuid . I need to use that uuid in the body section of the href string I've written in the