www.pudn.com > JMail4Email.rar > QuickMailText.java


//  QuickMailText.java 
 
import javax.mail.*; 
import javax.mail.internet.*; 
 
/** 
 *  Utility class for sending simple text messages using the JavaMail API. 
 * 
 *  @author Chad (shod) Darby, darby@j-nine.com 
 */ 
public class QuickMailText { 
 
	/** 
	 *  Sends a simple text e-mail message. 
	 * 
	 *  @param smtpHost name of the SMTP mail server 
	 *  @param from e-mail address of the sender 
	 *  @param to e-mail address of the recipient 
	 *  @param subject subject of the e-mail message 
	 *  @param messageText the actual text of the message 
	 * 
	 *  @throws javax.mail.MessagingFormatException problems sending message 
	 */ 
	public static void sendMessage(String smtpHost, 
								   								 String from, String to, 
								   								 String subject, String messageText) 
	  throws MessagingException { 
 
		// Step 1:  Configure the mail session 
		System.out.println("Configuring mail session for: " + smtpHost); 
		java.util.Properties props = new java.util.Properties(); 
		props.put("mail.smtp.host", smtpHost); 
		Session mailSession = Session.getDefaultInstance(props); 
 
		// Step 2:  Construct the message 
		System.out.println("Constructing message -  from=" + from + "  to=" + to); 
		InternetAddress fromAddress = new InternetAddress(from); 
		InternetAddress toAddress = new InternetAddress(to); 
 
		MimeMessage testMessage = new MimeMessage(mailSession); 
		testMessage.setFrom(fromAddress); 
		testMessage.addRecipient(javax.mail.Message.RecipientType.TO, toAddress); 
	    testMessage.setSentDate(new java.util.Date()); 
		testMessage.setSubject(subject); 
		testMessage.setText(messageText); 
		System.out.println("Message constructed"); 
 
		// Step 3:  Now send the message 
		Transport.send(testMessage); 
		System.out.println("Message sent!"); 
	} 
 
	public static void main(String[] args) { 
		if (args.length != 3) { 
			System.out.println("Usage:  java QuickMailText   "); 
			System.exit(1); 
		} 
 
		String smtpHost = args[0]; 
		String from = args[1]; 
		String to = args[2]; 
		String subject = "Test Message - quickmail_text"; 
 
		StringBuffer theMessage = new StringBuffer(); 
		theMessage.append("Hello,\n\n"); 
		theMessage.append("Hope all is well.\n"); 
		theMessage.append("Cheers!"); 
 
		try { 
			QuickMailText.sendMessage(smtpHost, from, to, subject, theMessage.toString()); 
		} 
		catch (javax.mail.MessagingException exc) { 
			exc.printStackTrace(); 
		} 
	} 
 
}