diff options
author | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-29 18:01:43 -0400 |
---|---|---|
committer | Michael Gapczynski <mtgap@owncloud.com> | 2012-07-29 18:02:09 -0400 |
commit | 5262cde6a6dbf7c924508423093aaac0d17a95b5 (patch) | |
tree | 48a304fb2fad15f907fe3806c30eb0c869f5cc19 /apps/files_sharing/ajax | |
parent | e18639551d4c2915af706c70f98c67aa04b9c89e (diff) | |
download | nextcloud-server-5262cde6a6dbf7c924508423093aaac0d17a95b5.tar.gz nextcloud-server-5262cde6a6dbf7c924508423093aaac0d17a95b5.zip |
Add additional error handling for emailing private links
Diffstat (limited to 'apps/files_sharing/ajax')
-rw-r--r-- | apps/files_sharing/ajax/email.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/apps/files_sharing/ajax/email.php b/apps/files_sharing/ajax/email.php index 3026eb74675..aba4f699fa8 100644 --- a/apps/files_sharing/ajax/email.php +++ b/apps/files_sharing/ajax/email.php @@ -10,4 +10,9 @@ $subject = $user.' shared a '.$type.' with you'; $link = $_POST['link']; $text = $user.' shared the '.$type.' '.$_POST['file'].' with you. It is available for download here: '.$link; $fromaddress = OCP\Config::getUserValue($user, 'settings', 'email', 'sharing-noreply@'.OCP\Util::getServerHost()); -OCP\Util::sendMail($_POST['toaddress'], $_POST['toaddress'], $subject, $text, $fromaddress, $user); +try { + OCP\Util::sendMail($_POST['toaddress'], $_POST['toaddress'], $subject, $text, $fromaddress, $user); + OCP\JSON::success(); +} catch (Exception $exception) { + OCP\JSON::error(array('data' => array('message' => $exception->getMessage()))); +} |