⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 quickmailtext.java

📁 基于JavaMail开发的E-mail系统
💻 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 <smtphost> <from> <to>");
			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();
		}
	}

}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -