2012-04-26 18:33:06 +04:00
|
|
|
<?php
|
|
|
|
OC_JSON::checkLoggedIn();
|
|
|
|
OC_JSON::checkAppEnabled('files_sharing');
|
2012-05-01 20:50:31 +04:00
|
|
|
$user = OCP\USER::getUser();
|
2012-04-26 18:33:06 +04:00
|
|
|
// TODO translations
|
|
|
|
$subject = $user + ' ' + 'shared a file with you';
|
|
|
|
$link = $_POST['link'] + '&f=' + $_POST['f'];
|
|
|
|
$text = $user + ' ' + 'shared the file' + ' ' + $_POST['f'] + ' ' + 'with you.' + ' ' + 'It is available for download here:' + ' ' + $link;
|
2012-05-01 20:30:27 +04:00
|
|
|
$fromaddress = OC_Preferences::getValue($user, 'settings', 'email', 'sharing-noreply@'.$_SERVER['HTTP_HOST']);
|
2012-04-26 18:33:06 +04:00
|
|
|
OC_Mail::send($_POST['toaddress'], $_POST['toaddress'], $subject, $text, $fromaddress, $user);
|
|
|
|
|
|
|
|
?>
|