diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2012-09-04 17:13:34 +0300 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2012-09-04 17:13:34 +0300 |
commit | 69ee84252135cc9ef4aa4526c3dbe6483e2459f5 (patch) | |
tree | 86cb516ff418753d3fbdb97504d35cc874e6c548 /lib/mail.php | |
parent | 745f279fbc613cd90f2bf6e2c9432b9534c133de (diff) | |
download | nextcloud-server-69ee84252135cc9ef4aa4526c3dbe6483e2459f5.tar.gz nextcloud-server-69ee84252135cc9ef4aa4526c3dbe6483e2459f5.zip |
Fixing: http://bugs.owncloud.org/thebuggenie/owncloud/issues/oc-1617
Diffstat (limited to 'lib/mail.php')
-rw-r--r-- | lib/mail.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/mail.php b/lib/mail.php index acdadeffd33..fc9aebfda3b 100644 --- a/lib/mail.php +++ b/lib/mail.php @@ -55,6 +55,7 @@ class OC_Mail { $mailo->From =$fromaddress; $mailo->FromName = $fromname;; + $mailo->Sender =$fromaddress; $a=explode(' ',$toaddress); try { foreach($a as $ad) { |