Java Code

Send Email from your GMAIL account using java

?View Code JAVApackage com.util.mail;
 
import java.security.Security;
import java.util.Date;
import java.util.Properties;
 
import javax.mail.Authenticator;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
 
import org.apache.log4j.Logger;
 
 public static final void sendMail(String to, String title, String content) {
  try {
     Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());
   final String SSL_FACTORY = [...]


How to use Java to compile the NT service

1. NT services introduced
   The so-called NT service, in fact is a kind of special application procedure so-called NT service, in fact is one may when the system initiation automatically adjoint system long time existence advancement which starts under certain status. Looks like FTP server, HTTP server, the off-line printing and so on to use [...]