summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/ajax/email.php
diff options
context:
space:
mode:
Diffstat (limited to 'apps/files_sharing/ajax/email.php')
-rw-r--r--apps/files_sharing/ajax/email.php18
1 files changed, 0 insertions, 18 deletions
diff --git a/apps/files_sharing/ajax/email.php b/apps/files_sharing/ajax/email.php
deleted file mode 100644
index aba4f699fa8..00000000000
--- a/apps/files_sharing/ajax/email.php
+++ /dev/null
@@ -1,18 +0,0 @@
-<?php
-OCP\JSON::checkLoggedIn();
-OCP\JSON::checkAppEnabled('files_sharing');
-OCP\JSON::callCheck();
-
-$user = OCP\USER::getUser();
-// TODO translations
-$type = (strpos($_POST['file'], '.') === false) ? 'folder' : 'file';
-$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());
-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())));
-}