function _messaging_htmlmail_replace_files in Messaging 7
Callback for preg_replace_callback()
1 string reference to '_messaging_htmlmail_replace_files'
- Messaging_HTML_MailSystem::mimemail_extract_files in messaging_htmlmail/
messaging_htmlmail.inc - Extracts links to local images from html documents.
File
- messaging_htmlmail/
messaging_htmlmail.inc, line 424 - Drupal Messaging Framework - Send_Method class file
Code
function _messaging_htmlmail_replace_files($matches) {
return stripslashes($matches[1]) . _messaging_htmlmail_file($matches[2]) . stripslashes($matches[3]);
}