nextcloud/apps/files_sharing/ajax/email.php

15 lines
658 B
PHP
Raw Normal View History

<?php
2012-05-03 14:23:29 +04:00
OCP\JSON::checkLoggedIn();
OCP\JSON::checkAppEnabled('files_sharing');
2012-07-07 18:03:21 +04:00
OCP\JSON::callCheck();
2012-05-01 20:50:31 +04:00
$user = OCP\USER::getUser();
// TODO translations
$toaddress = OCP\Util::sanitizeHtml($_POST['toaddress']);
$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());
OCP\Util::sendMail($toaddress, $toaddress, $subject, $text, $fromaddress, $user);