How to send mail and attachment file using jsp

Olaf Kock, modified 7 Years ago. New Member Post: 1 Join Date: 11/17/18 Recent Posts

I want to send email using jsp. I have develop this small code to send email. I have added all require library like java mail API and JAF. But still it is not working. I don't know whats going wrong in this. it shows me Error: unable to send message .

thumbnail
Olaf Kock, modified 7 Years ago. Liferay Legend Posts: 6441 Join Date: 9/23/08 Recent Posts
Gemma555 alex:
I want to send email using jsp. I have develop this small code to send email. I have added all require library like java mail API and JAF. But still it is not working. I don't know whats going wrong in this. it shows me Error: unable to send message.


First, a JSP is certainly not the right place to send a mail.

On top of that: Without seeing any code, it's impossible for anyone to tell you what's wrong with your code. Please post some reproducable sample of your code in order for anyone to be able to help you

thumbnail
Sapphire Accountants, modified 6 Years ago. New Member Posts: 2 Join Date: 3/5/20 Recent Posts
<%@ page import = "java.io.*,java.util.*,javax.mail.*"%>
<%@ page import = "javax.mail.internet.*,javax.activation.*"%>
<%@ page import = "javax.servlet.http.*,javax.servlet.*" %>
<%
   String result;

   // Recipient's email ID needs to be mentioned.
   String to = "abcd@gmail.com";