Example usage for com.liferay.portal.util PropsValues LOGIN_EMAIL_FROM_ADDRESS

List of usage examples for com.liferay.portal.util PropsValues LOGIN_EMAIL_FROM_ADDRESS

Introduction

In this page you can find the example usage for com.liferay.portal.util PropsValues LOGIN_EMAIL_FROM_ADDRESS.

Prototype

String LOGIN_EMAIL_FROM_ADDRESS

To view the source code for com.liferay.portal.util PropsValues LOGIN_EMAIL_FROM_ADDRESS.

Click Source Link

Usage

From source file:com.liferay.login.web.internal.portlet.util.LoginUtil.java

License:Open Source License

public static String getEmailFromAddress(PortletPreferences preferences, long companyId) {

    return PortalUtil.getEmailFromAddress(preferences, companyId, PropsValues.LOGIN_EMAIL_FROM_ADDRESS);
}

From source file:com.liferay.portlet.login.util.LoginUtil.java

License:Open Source License

public static String getEmailFromAddress(PortletPreferences preferences, long companyId)
        throws SystemException {

    return PortalUtil.getEmailFromAddress(preferences, companyId, PropsValues.LOGIN_EMAIL_FROM_ADDRESS);
}