Develop Java Programs implementing 10 new concepts/features/Topics (not in our syllabus).
- Code
- Source - Javatpoint
.jar
files- Steps:
- Get the session object: The
javax.mail.Session
class provides two methods to get the object of session,Session.getDefaultInstance()
method andSession.getInstance()
method. - Compose the message: The
javax.mail.Message
class provides methods to compose the message. But it is an abstract class so its subclassjavax.mail.internet.MimeMessage
class is mostly used. To create the message, you need to pass session object inMimeMessage
class constructor. - Resolving Authentication failure: Click on this link and click on turn on radio button to allow users to send mail from unknown location.
- Get the session object: The