
邮件开发
yonge
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
javamail邮件开发入门(1)
简单的邮件发送: public static void main(String[] args) throws UnsupportedEncodingException, AddressException { Properties props = new Properties(); props.put("mail.transport.protocol", "sm...2011-12-13 15:04:06 · 117 阅读 · 0 评论 -
javamail邮件开发入门(2)
简单的接收邮件的例子: public static void main(String[] args) { Properties props = new Properties(); props.put("mail.store.protocol", "pop3"); props.put("mail.pop3.auth ", "true"); ...2011-12-13 18:25:06 · 115 阅读 · 0 评论