2012-04-26 14:33:06 +00:00
|
|
|
<?php
|
2012-05-03 10:23:29 +00:00
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
OCP\JSON::checkAppEnabled('files_sharing');
|
2012-05-01 16:50:31 +00:00
|
|
|
$user = OCP\USER::getUser();
|
2012-04-26 14:33:06 +00:00
|
|
|
// TODO translations
|
2012-05-15 00:09:10 +00:00
|
|
|
$subject = $user.' shared a file with you';
|
|
|
|
$link = $_POST['link'];
|
|
|
|
$text = $user.' shared the file '.$_POST['file'].' with you. It is available for download here: '.$link;
|
2012-05-02 13:54:34 +00:00
|
|
|
$fromaddress = OCP\Config::getUserValue($user, 'settings', 'email', 'sharing-noreply@'.$_SERVER['HTTP_HOST']);
|
2012-04-26 14:33:06 +00:00
|
|
|
OC_Mail::send($_POST['toaddress'], $_POST['toaddress'], $subject, $text, $fromaddress, $user);
|
|
|
|
|
|
|
|
?>
|