Skip to content
Snippets Groups Projects
Commit a3b06e96 authored by Michael Gapczynski's avatar Michael Gapczynski
Browse files

Check if a private link points to a folder or file and change text accordingly

parent cda9dcc7
No related branches found
No related tags found
No related merge requests found
......@@ -3,9 +3,10 @@ OCP\JSON::checkLoggedIn();
OCP\JSON::checkAppEnabled('files_sharing');
$user = OCP\USER::getUser();
// TODO translations
$subject = $user.' shared a file with you';
$type = (strpos($_POST['file'], '.') === false) ? 'folder' : 'file';
$subject = $user.' shared a '.$type.' with you';
$link = $_POST['link'];
$text = $user.' shared the file '.$_POST['file'].' with you. It is available for download here: '.$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@'.$_SERVER['HTTP_HOST']);
OC_Mail::send($_POST['toaddress'], $_POST['toaddress'], $subject, $text, $fromaddress, $user);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment