HI ,
I want to send email . if i send email locally(localhost) , its not working. But its working when app on server.
Here is the code i used in my apps
Message msg = new MimeMessage(session);
msg.setFrom(new InternetAddress("
x...@gmail.com"));
msg.addRecipient(
Message.RecipientType.TO, new InternetAddress("
x...@gmail.com","Mr. User"));
msg.setSubject(subject);
msg.setContent(content, "text/html");
Transport.send(msg);
Is there Any way to send ?
Thanks in Advance