mirror of
https://github.com/nextcloud/server.git
synced 2026-02-26 03:11:28 -05:00
* files_encryption * files_versions * files_trashbin * tests * status.php * core * server container
15 lines
479 B
PHP
15 lines
479 B
PHP
<?php
|
|
|
|
OC_JSON::checkLoggedIn();
|
|
OCP\JSON::callCheck();
|
|
|
|
$l = \OC::$server->getL10N('settings');
|
|
|
|
// Get data
|
|
if( isset( $_POST['email'] ) && OC_Mail::validateAddress($_POST['email']) ) {
|
|
$email=trim($_POST['email']);
|
|
\OC::$server->getConfig()->setUserValue(OC_User::getUser(), 'settings', 'email', $email);
|
|
OC_JSON::success(array("data" => array( "message" => $l->t("Email saved") )));
|
|
}else{
|
|
OC_JSON::error(array("data" => array( "message" => $l->t("Invalid email") )));
|
|
}
|