Have sent a message and not a link
mbennett3 - August 18, 2008 - 16:16
| Project: | SMS Framework |
| Version: | 6.x-1.x-dev |
| Component: | Send to Phone |
| Category: | feature request |
| Priority: | normal |
| Assigned: | Unassigned |
| Status: | active |
Jump to:
Description
I have been playing around with this module and have got it to send sms messages, but when it send it it send it as a link. users would have to log in to see the message. I just want to sent the title and the body in the message

#1
Moving to Drupal 6 development branch.
#2
Sorry, what about this functionality? Has it been developed yet?
Isn't it enough to change the '#default_value' from link to check_plain($node->body)?
TIA this module is great!!
#3
I find this strange, installed the module and enabled Send to phone for content type. Link appears in block but message is link to node. What use is a link if the phone cannot view web pages? AFAIK most mobile phones cannot view web pages and regardless, most sites aren't mobile phone friendly. I would like to customize the default message using tokens. Also I think the URL ought to adopt URL alias i.e. sms/sendtophone/url-alias.
#4
I'm trying to create module, have made it load body ..
<?phpfunction custom_sms_form_sms_sendtophone_form_alter(&$form, $form_state) {
module_load_include('module', 'sms_sendtophone');
module_load_include('inc', 'date_token');
if (is_numeric(arg(3))) {
$node = node_load(arg(3));
$form['message'] = array(
'#type' => 'textarea',
'#title' => t('Message preview'),
'#description' => t('This message will be sent to the phone.'),
'#cols' => 35,
'#rows' => 2,
'#attributes' => array('disabled' => true),
'#default_value' => $node->body,
);
}
}
?>
I want it to include date fields too and all repeat dates too. I tried $node->field_myfieldname['value'], does nothing.