Searched refs:sendEmail (Results 1 - 25 of 28) sorted by relevance

12

/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/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-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 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 " +
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 DOAuth.java430 OAuthUtil.sendEmail(config.getEmailFrom(), mail, data,
/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 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 " +
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 DOAuth.java436 OAuthUtil.sendEmail(config.getEmailFrom(), mail, data,
/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
H A DHOTPService.java209 gateway.sendEmail(from, mail, subject, message, otpCode, currentConfig);
222 gateway.sendEmail(from, mail, subject, message, otpCode, currentConfig);
/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
H A DHOTPService.java211 gateway.sendEmail(from, mail, subject, message, otpCode, currentConfig);
224 gateway.sendEmail(from, mail, subject, message, otpCode, currentConfig);
/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/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-v13/openam-core/src/test/java/org/forgerock/openam/services/email/
H A DMailServerImplTest.java70 mailServerMock.sendEmail("to@gmail.com", "Subject", "Message");
82 mailServerMock.sendEmail("from@gmail.com", "to@gmail.com", "Subject", "Message", createOptionsMap());
/forgerock/openam/openam-core/src/test/java/org/forgerock/openam/services/email/
H A DMailServerImplTest.java70 mailServerMock.sendEmail("to@gmail.com", "Subject", "Message");
82 mailServerMock.sendEmail("from@gmail.com", "to@gmail.com", "Subject", "Message", createOptionsMap());
/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");
/forgerock/openam-v13/openam-core-rest/src/main/java/org/forgerock/openam/core/rest/
H A DIdentityResourceV1.java448 mailServer.sendEmail(to, subject, message);

Completed in 147 milliseconds

12