Newscoop\NewscoopBundle\Controller\SystemPrefController::smtpConfiguration PHP Метод

smtpConfiguration() приватный Метод

Sets SMTP options.
private smtpConfiguration ( string $host, integer $port )
$host string SMTP host
$port integer SMTP port
    private function smtpConfiguration($host, $port)
    {
        $preferencesService = $this->container->get('system_preferences_service');
        $preferencesService->SMTPHost = strip_tags($host);
        $preferencesService->SMTPPort = $port;
    }