Smtp Zimbra Server and Java Hello to all,
I have written a Java application in order to connect me to my server mail smtp Zimbra and to send mails. For the connection i use tls with the port 25. I have tested the code with the mail of Gmail and works ok.
The Code is this:
import javax.mail.*;
import javax.mail.internet.*;
import java.util.*;
public class JspMail
{
String d_email = "piporo@pipoflauto.com",
d_password = "haihaihai",
d_host = "mail.mysmtpserver.com",
d_port = "25",
m_to = "steve.jobs@apple.com",
m_subject = "Testing",
m_text = "Hey, this is the testing email.";
public JspMail()
{
Properties props = new Properties();
props.put("mail.smtp.user", d_email);
props.put("mail.smtp.host", d_host);
props.put("mail.smtp.port", d_port);
props.put("mail.smtp.starttls.enable","true");
props.put("mail.smtp.auth", "true");
//props.put("mail.smtp.debug", "true");
props.put("mail.smtp.socketFactory.port", d_port);
props.put("mail.smtp.socketFactory.class", "javax.net.ssl.SSLSocketFactory");
props.put("mail.smtp.socketFactory.fallback", "false");
SecurityManager security = System.getSecurityManager();
try
{
Authenticator auth = new SMTPAuthenticator();
Session session = Session.getInstance(props, auth);
//session.setDebug(true);
MimeMessage msg = new MimeMessage(session);
msg.setText(m_text);
msg.setSubject(m_subject);
msg.setFrom(new InternetAddress(d_email));
msg.addRecipient(Message.RecipientType.TO, new InternetAddress(m_to));
Transport.send(msg);
}
catch (Exception mex)
{
mex.printStackTrace();
}
}
public static void main(String[] args)
{
JspMail blah = new JspMail();
}
private class SMTPAuthenticator extends javax.mail.Authenticator
{
public PasswordAuthentication getPasswordAuthentication()
{
return new PasswordAuthentication(d_email, d_password);
}
}
}
Help Please, Thanks |