I have create a function which to send mail. Its works when I invoke in main(). But when I invoke it from jsp, or from other class its throw exception
“java.lang.NoClassDefFoundError: javax/mail/MessagingException”
I have create a function which to send mail. Its works when I invoke
Share
Seems javaxmail jar is not presnet in WEB-INF/lib folder in your webapp. Jar containing javax.mail.* is required for web application to send mail if using default java package.