For one of my j2ee application, i used SMTP to send the mail.
My code look like as follows.
package email_sender;
import java.util.Properties;
import javax.mail.Message;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
public class registration
{
public void send(String name, String email)
{
String email_format = "TEMP MESSAGE";
Properties props = new Properties();
props.put("mail.smtp.host", "smtp.gmail.com");
props.put("mail.smtp.socketFactory.port", "465");
props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.port", "465");
Session session = Session.getDefaultInstance(props,
new javax.mail.Authenticator()
{
protected PasswordAuthentication getPasswordAuthentication()
{
return new PasswordAuthentication("gmail@gmail.com","gmail_password");
}
});
try
{
Message message = new MimeMessage(session);
message.setFrom(new InternetAddress("gmail.com"));
message.setRecipients(Message.RecipientType.TO, InternetAddress.parse(email));
message.setSubject("TEST subject");
message.setContent(email_format, "text/html");
Transport.send(message);
}
catch (Exception e)
{
throw new RuntimeException(e);
}
}
}
This is test format of registration form.
Its takes almost 9 seconds to execute.
I am using 2MBPS broadband connection.
Is something wrong is the process or we need to find some better way to send mail?