⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mailinterface.java

📁 Rapla是一个灵活的多用户资源管理系统。它提供的一些功能有:日历GUI
💻 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 + -