Revert santizing toaddress, because PHPMailer now throws exceptions
This commit is contained in:
parent
281bf62af9
commit
91a15bae76
1 changed files with 1 additions and 2 deletions
|
@ -5,10 +5,9 @@ OCP\JSON::callCheck();
|
|||
|
||||
$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);
|
||||
OCP\Util::sendMail($_POST['toaddress'], $_POST['toaddress'], $subject, $text, $fromaddress, $user);
|
||||
|
|
Loading…
Reference in a new issue