aboutsummaryrefslogtreecommitdiffstats
path: root/mod/dfrn_notify.php
diff options
context:
space:
mode:
authorChris Case <kahotep@bunda.dreamhost.com>2011-02-13 14:55:48 -0800
committerChris Case <kahotep@bunda.dreamhost.com>2011-02-13 14:55:48 -0800
commitf98ba371cfdb0d0d47a5717aa60a5b703017cbe4 (patch)
tree7eb936054d51ef2f15b3385ba4c91cca056d6b77 /mod/dfrn_notify.php
parent2d542e0f982598b792da6fbdf9cd7b29c2a04c83 (diff)
downloadvolse-hubzilla-f98ba371cfdb0d0d47a5717aa60a5b703017cbe4.tar.gz
volse-hubzilla-f98ba371cfdb0d0d47a5717aa60a5b703017cbe4.tar.bz2
volse-hubzilla-f98ba371cfdb0d0d47a5717aa60a5b703017cbe4.zip
updated private message notification to use HTML, still need the foreign language message notifications updated
Diffstat (limited to 'mod/dfrn_notify.php')
-rw-r--r--mod/dfrn_notify.php56
1 files changed, 34 insertions, 22 deletions
diff --git a/mod/dfrn_notify.php b/mod/dfrn_notify.php
index 755d674c1..49276647a 100644
--- a/mod/dfrn_notify.php
+++ b/mod/dfrn_notify.php
@@ -2,8 +2,6 @@
require_once('simplepie/simplepie.inc');
require_once('include/items.php');
-
-
function dfrn_notify_post(&$a) {
$dfrn_id = ((x($_POST,'dfrn_id')) ? notags(trim($_POST['dfrn_id'])) : '');
@@ -52,11 +50,17 @@ function dfrn_notify_post(&$a) {
}
- $r = q("SELECT `contact`.*, `contact`.`uid` AS `importer_uid`,
- `contact`.`pubkey` AS `cpubkey`, `contact`.`prvkey` AS `cprvkey`, `user`.* FROM `contact`
- LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
- WHERE `contact`.`blocked` = 0 AND `contact`.`pending` = 0
- AND `user`.`nickname` = '%s' $sql_extra LIMIT 1",
+ $r = q("SELECT `contact`.*, `contact`.`uid` AS `importer_uid`,
+ `contact`.`pubkey` AS `cpubkey`,
+ `contact`.`prvkey` AS `cprvkey`,
+ `contact`.`thumb` AS `thumb`,
+ `contact`.`url` as `url`,
+ `contact`.`name` as `senderName`,
+ `user`.*
+ FROM `contact`
+ LEFT JOIN `user` ON `contact`.`uid` = `user`.`uid`
+ WHERE `contact`.`blocked` = 0 AND `contact`.`pending` = 0
+ AND `user`.`nickname` = '%s' $sql_extra LIMIT 1",
dbesc($a->argv[1])
);
@@ -169,29 +173,37 @@ function dfrn_notify_post(&$a) {
require_once('bbcode.php');
if($importer['notify-flags'] & NOTIFY_MAIL) {
- $body = html_entity_decode(strip_tags(bbcode(stripslashes($msg['body']))),ENT_QUOTES,'UTF-8');
-
- if(function_exists('quoted_printable_encode'))
+// $body = html_entity_decode(strip_tags(bbcode(stripslashes(nl2br($msg['body'])))),ENT_QUOTES,'UTF-8');
+// $body = strip_tags(bbcode(stripslashes(nl2br($msg['body']))));
+
+ /*if(function_exists('quoted_printable_encode'))
$body = quoted_printable_encode($body);
else
- $body = qp($body);
+ $body = qp($body);*/
+ $msg['body'] = str_replace(array("\\r\\n", "\\r", "\\n"), "<br />", $msg['body']);
+ $msg['body'] = html_entity_decode(strip_tags(bbcode($msg['body'])));
$tpl = load_view_file('view/mail_received_eml.tpl');
$email_tpl = replace_macros($tpl, array(
- '$sitename' => $a->config['sitename'],
- '$siteurl' => $a->get_baseurl(),
- '$username' => $importer['username'],
- '$email' => $importer['email'],
- '$from' => $msg['from-name'],
- '$title' => stripslashes($msg['title']),
- '$body' => $body
+ '$siteName' => $a->config['sitename'],
+ '$siteurl' => $a->get_baseurl(),
+ '$username' => $importer['username'],
+ '$thumb' => $importer['thumb'],
+ '$email' => $importer['email'],
+ '$url' => $importer['url'],
+ '$senderName' => $importer['senderName'],
+ '$from' => $msg['from-name'],
+ '$title' => stripslashes($msg['title']),
+ '$body' => $msg['body'],
+ '$hostname' => $a->get_hostname()
));
-
+
$res = mail($importer['email'], t('New mail received at ') . $a->config['sitename'],
- $email_tpl, 'From: ' . t('Administrator') . '@' . $a->get_hostname() . "\r\n"
+ $email_tpl,
+ 'From: ' . t('Administrator') . '@' . $a->get_hostname() . "\r\n"
. 'MIME-Version: 1.0' . "\r\n"
- . 'Content-type: text/plain; charset=UTF-8' . "\r\n"
- . 'Content-transfer-encoding: quoted-printable' . "\r\n"
+ . 'Content-type: text/html; charset=iso-8859-1' . "\r\n"
+ . 'Content-transfer-encoding: 7-bit' . "\r\n"
);
}
xml_status(0);