Searched defs:sendEmail (Results 1 - 18 of 18) sorted by relevance

/forgerock/openam-v13/openam-rest/src/main/java/org/forgerock/openam/services/
H A DMailService.java81 JsonValue response = sendEmail(RealmContext.getRealm(context), request.getContent());
92 private JsonValue sendEmail(String realm, JsonValue jsonValue) throws ResourceException { method in class:MailService
142 mailServer.sendEmail(to, subject, body, mimeType);
/forgerock/openam-v13/openam-core/src/main/java/org/forgerock/openam/services/email/
H A DMailServer.java77 void sendEmail(String from, String to, String subject, method in interface:MailServer
87 void sendEmail(String to, String subject, String message) throws MessagingException; method in interface:MailServer
104 void sendEmail(String to, String subject, String message, String mimeType) throws MessagingException; method in interface:MailServer
H A DMailServerImpl.java45 private static final String DEBUG_TAG = "MailServerImpl.sendEmail() : ";
176 sendEmail(from, to, subject, message, HTML_MIME_TYPE, options);
180 public void sendEmail(String to, String subject, String message, String mimeType) throws MessagingException { method in class:MailServerImpl
181 sendEmail(null, to, subject, message, mimeType, null);
185 public void sendEmail(String to, String subject, String message) throws MessagingException { method in class:MailServerImpl
186 sendEmail(null, to, subject, message, null);
190 public void sendEmail(String from, String to, String subject, String message, Map<String, Set<String>> options) method in class:MailServerImpl
192 sendEmail(from, to, subject, message, PLAIN_MIME_TYPE, options);
195 private void sendEmail(String from, String to, String subject, String message, String mimeType, Map options) method in class:MailServerImpl
/forgerock/openam-v13/openam-authentication/openam-auth-hotp/src/main/java/com/sun/identity/authentication/modules/hotp/
H A DSMSGateway.java67 void sendEmail(String from, String to, String subject, method in interface:SMSGateway
H A DDefaultSMSGatewayImpl.java103 public void sendEmail(String from, String to, String subject, method in class:DefaultSMSGatewayImpl
/forgerock/openam-v13/openam-authentication/openam-auth-oauth2/src/main/java/org/forgerock/openam/authentication/modules/oauth2/
H A DEmailGateway.java42 public void sendEmail(String from, String to, String subject, method in interface:EmailGateway
H A DDefaultEmailGatewayImpl.java65 public void sendEmail(String from, String to, String subject, method in class:DefaultEmailGatewayImpl
70 debug.message("DefaultEmailGatewayImpl::sendEmail to header is empty");
85 OAuthUtil.debugWarning("DefaultEmailGatewayImpl.sendEmail() :" +
92 OAuthUtil.debugMessage("DefaultEmailGatewayImpl.sendEmail() : " +
96 debug.error("DefaultEmailGatewayImpl.sendEmail() : " +
H A DOAuthUtil.java79 public static void sendEmail(String from, String emailAddress, String activCode, method in class:OAuthUtil
95 debugError("OAuthUtil.sendEmail(): Error while encoding", ex);
101 gateway.sendEmail(from, emailAddress, subject, message, SMTPConfig);
102 debugMessage("OAuthUtil.sendEmail(): sent email to " +
105 debugMessage("OAuthUtil.sendEmail(): unable to send email");
109 debugError("OAuthUtil.sendEmail(): " + "class not found " +
112 debugError("OAuthUtil.sendEmail(): " + "can not instantiate " +
115 debugError("OAuthUtil.sendEmail(): " + "can not access " +
/forgerock/openam/openam-rest/src/main/java/org/forgerock/openam/services/
H A DMailService.java81 JsonValue response = sendEmail(RealmContext.getRealm(context).asPath(), request.getContent());
92 private JsonValue sendEmail(String realm, JsonValue jsonValue) throws ResourceException { method in class:MailService
142 mailServer.sendEmail(to, subject, body, mimeType);
/forgerock/openam/openam-authentication/openam-auth-hotp/src/main/java/com/sun/identity/authentication/modules/hotp/
H A DSMSGateway.java78 void sendEmail(String from, String to, String subject, method in interface:SMSGateway
H A DDefaultSMSGatewayImpl.java103 public void sendEmail(String from, String to, String subject, method in class:DefaultSMSGatewayImpl
/forgerock/openam/openam-authentication/openam-auth-oauth2/src/main/java/org/forgerock/openam/authentication/modules/oauth2/
H A DEmailGateway.java42 public void sendEmail(String from, String to, String subject, method in interface:EmailGateway
H A DDefaultEmailGatewayImpl.java65 public void sendEmail(String from, String to, String subject, method in class:DefaultEmailGatewayImpl
70 debug.message("DefaultEmailGatewayImpl::sendEmail to header is empty");
85 OAuthUtil.debugWarning("DefaultEmailGatewayImpl.sendEmail() :" +
92 OAuthUtil.debugMessage("DefaultEmailGatewayImpl.sendEmail() : " +
96 debug.error("DefaultEmailGatewayImpl.sendEmail() : " +
H A DOAuthUtil.java79 public static void sendEmail(String from, String emailAddress, String activCode, method in class:OAuthUtil
95 debugError("OAuthUtil.sendEmail(): Error while encoding", ex);
101 gateway.sendEmail(from, emailAddress, subject, message, SMTPConfig);
102 debugMessage("OAuthUtil.sendEmail(): sent email to " +
105 debugMessage("OAuthUtil.sendEmail(): unable to send email");
109 debugError("OAuthUtil.sendEmail(): " + "class not found " +
112 debugError("OAuthUtil.sendEmail(): " + "can not instantiate " +
115 debugError("OAuthUtil.sendEmail(): " + "can not access " +
/forgerock/openam/openam-core/src/main/java/org/forgerock/openam/services/email/
H A DMailServer.java77 void sendEmail(String from, String to, String subject, method in interface:MailServer
87 void sendEmail(String to, String subject, String message) throws MessagingException; method in interface:MailServer
104 void sendEmail(String to, String subject, String message, String mimeType) throws MessagingException; method in interface:MailServer
H A DMailServerImpl.java45 private static final String DEBUG_TAG = "MailServerImpl.sendEmail() : ";
176 sendEmail(from, to, subject, message, HTML_MIME_TYPE, options);
180 public void sendEmail(String to, String subject, String message, String mimeType) throws MessagingException { method in class:MailServerImpl
181 sendEmail(null, to, subject, message, mimeType, null);
185 public void sendEmail(String to, String subject, String message) throws MessagingException { method in class:MailServerImpl
186 sendEmail(null, to, subject, message, null);
190 public void sendEmail(String from, String to, String subject, String message, Map<String, Set<String>> options) method in class:MailServerImpl
192 sendEmail(from, to, subject, message, PLAIN_MIME_TYPE, options);
195 private void sendEmail(String from, String to, String subject, String message, String mimeType, Map options) method in class:MailServerImpl
/forgerock/openam-v13/openam-core/src/main/java/com/iplanet/am/sdk/ldap/
H A DEmailNotificationHelper.java99 private void sendEmail(Set notifyList, Map attributes, String fromCode, method in class:EmailNotificationHelper
219 sendEmail(createNotifyList, attributes, "497", "490", "493");
240 sendEmail(deleteNotifyList, attributes, "497", "491", "494");
/forgerock/openam/openam-core/src/main/java/com/iplanet/am/sdk/ldap/
H A DEmailNotificationHelper.java99 private void sendEmail(Set notifyList, Map attributes, String fromCode, method in class:EmailNotificationHelper
219 sendEmail(createNotifyList, attributes, "497", "490", "493");
240 sendEmail(deleteNotifyList, attributes, "497", "491", "494");

Completed in 40 milliseconds