android开发邮件系统必备包activation.jar、mail.jar、additionnal.jar有了它们才可以开发邮件系统哦
2021-06-14 15:49:30 488KB android邮件
1
Java开发邮件系统,此系统能实现邮件的收发删除等
2021-06-12 15:08:11 15.08MB Java 邮件开发系统
1
/* * JCatalog Project */ package com.hexiang.utils; import java.util.List; import java.util.ArrayList; import java.util.Date; import java.util.Iterator; import java.util.Properties; import javax.mail.Session; import javax.mail.Transport; import javax.mail.Message; import javax.mail.internet.InternetAddress; import javax.mail.internet.MimeMessage; import org.apache.commons.logging.Log; import org.apache.commons.logging.LogFactory; import com.hexiang.exception.CatalogException; /** * Utility class to send email. * * @author hexiang */ public class EmailUtil { //the logger for this class private static Log logger = LogFactory.getLog("com.hexiang.util.EmailUtil"); /** * Send email to a single recipient. * * @param smtpHost the SMTP email server address * @param senderAddress the sender email address * @param senderName the sender name * @param receiverAddress the recipient email address * @param sub the subject of the email * @param msg the message content of the email */ public static void sendEmail(String smtpHost, String senderAddress, String senderName, String receiverAddress, String sub, String msg) throws CatalogException { List recipients = new ArrayList(); recipients.add(receiverAddress); sendEmail(smtpHost, senderAddress, senderName, recipients, sub, msg); } /** * Send email to a list of recipients. * * @param smtpHost the SMTP email server address * @param senderAddress the sender email address * @param senderName the sender name * @param recipients a list of receipients email addresses * @param sub the subject of the email * @param msg the message content of the email */ public static void sendEmail(String smtpHost, String senderAddress, String senderName, List recipients, String sub, String msg) throws CatalogException { if (smtpHost == null) { String errMsg = "Could not send email: smtp host address is null"; logger.error(e
1
javaMail API的开发文档,邮件开发必备吧!你值得拥有!免费分享!
2021-05-25 14:02:27 799KB web开发 java chm 邮件开发
1
NULL 博文链接:https://llshenglin.iteye.com/blog/1030505
2021-05-18 19:55:30 489KB 源码 工具
1
javaweb邮件开发教程,包含代码以及教学视频,包含代码以及教学视频包含代码以及教学视频包含代码以及教学视频包含代码以及教学视频
2021-05-12 11:08:59 118B javaweb
1
android邮件开发 包括新浪 网易 雅虎 腾讯等主流邮件的收和发功能
2021-03-20 12:49:39 1.05MB android邮件
1
该文档用于指导用户基于 POP3 和 SMTP 的 邮件服务端和移动客户端开发与认识。
2019-12-21 21:05:20 1.54MB 邮件开发
1