📄 mailinterface.java
字号:
package org.rapla.components.mail;
public interface MailInterface {
String ROLE = MailInterface.class.getName();
/* Sends the mail.
Callers should check if the parameters are all valid
according to the SMTP RFC at http://www.ietf.org/rfc/rfc821.txt
because the implementing classes may not check for validity
*/
public void sendMail
(
String senderMail
,String recipient
,String subject
,String mailBody
)
throws MailException;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -