javamail 邮件发送问题总结

导入基本的邮件工具jar包:mail.jar和activation.jar

如果是在MYECLIPSE中做邮件系统开发,还需要将MYECLIPSE中自带的MAIL和activation模块的代码删除:

%MYECLIPSE_HOME%/Common/plugins/com.genuitec.eclipse.j2eedt.core_7.5.0.zmyeclipse75020090612/data/libraryset/EE_5/javaee.jar包中的mail和activation目录删除,这将可以解决如下一个问题

1.java.lang.NoClassDefFoundError: com/sun/activation/registries/LogSupport

:缺少JAR包或JAR包冲突

2.org.apache.commons.mail.EmailException: Sending the email to the following server failed :

:检查邮件配置或上面的问题

 

你可能感兴趣的:(javamail 邮件发送问题总结)