diff options
author | Friendika <info@friendika.com> | 2011-04-14 17:13:13 -0700 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-04-14 17:13:13 -0700 |
commit | de131c9e58ac2b14380d145d643bf2bd902ae9dc (patch) | |
tree | b39152160902426b8929165ba82f7c6311610ab8 /mod/invite.php | |
parent | c3b42fdbcb2165045e0ae759e103cc7d44b3f584 (diff) | |
download | volse-hubzilla-de131c9e58ac2b14380d145d643bf2bd902ae9dc.tar.gz volse-hubzilla-de131c9e58ac2b14380d145d643bf2bd902ae9dc.tar.bz2 volse-hubzilla-de131c9e58ac2b14380d145d643bf2bd902ae9dc.zip |
set utf-8 on all emails
Diffstat (limited to 'mod/invite.php')
-rw-r--r-- | mod/invite.php | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mod/invite.php b/mod/invite.php index 84fa978ad..1c5119595 100644 --- a/mod/invite.php +++ b/mod/invite.php @@ -30,7 +30,11 @@ function invite_post(&$a) { } $res = mail($recip, sprintf(t('Please join my network on %s'), $a->config['sitename']), - $message, "From: " . $a->user['email']); + $message, + "From: " . $a->user['email'] . "\n" + . 'Content-type: text/plain; charset=UTF-8' . "\n" + . 'Content-transfer-encoding: 8bit' ); + if($res) { $total ++; } |