如何使用仅包含from和to以及subject和message的Java发送邮件?

时间:2012-07-30 11:37:00

标签: java javamail

我使用以下代码发送邮件:

protected void mailSettings() {
    Object lookedUp = null;
    String mailSettingValues[] = null;
    try {
        InitialContext initialContext = new InitialContext();
        lookedUp = initialContext.lookup("java:/comp/env/mailsettings");
        mailSettingValues = lookedUp.toString().split(",");
        smtphost = mailSettingValues[0];
        port = mailSettingValues[1];
        username = mailSettingValues[2];
        password = mailSettingValues[3];
    } catch (NamingException e) {
        e.printStackTrace();
    }

    m_properties = new Properties();
    m_properties.put("mail.smtp.host", smtphost);
    m_properties.put("mail.smtp.auth", "true");
    m_properties.put("mail.smtp.starttls.enable", "true");
    m_properties.put("mail.smtp.port", port);

    m_Session = Session.getDefaultInstance(m_properties,
            new Authenticator() {
                protected PasswordAuthentication getPasswordAuthentication() {
                    return new PasswordAuthentication(username, password);
                }
            });

}

public void sendMail(String mail_from, String mail_to, String mail_subject,
        String m_body) {
    try {
        m_simpleMessage = new MimeMessage(m_Session);
        m_fromAddress = new InternetAddress(mail_from);
        m_toAddress = new InternetAddress(mail_to);

        m_simpleMessage.setFrom(m_fromAddress);
        m_simpleMessage.setRecipient(RecipientType.TO, m_toAddress);
        m_simpleMessage.setSubject(mail_subject);

        m_simpleMessage.setContent(m_body, "text/plain");

        Transport.send(m_simpleMessage);
    } catch (MessagingException ex) {
        ex.printStackTrace();
    }
}

在此代码中,我们需要从地址和密码中获取相同的电子邮件,但我希望在没有身份验证(获取用户密码)的情况下将邮件发送到to_email地址。

如何做到这一点?

我需要做以下事情:

  1. 从属性或上下文文件中获取发件人地址
  2. 从属性或上下文文件中获取地址
  3. 发送邮件至to_address,但未对来自地址进行身份验证

3 个答案:

答案 0 :(得分:4)

import java.util.*;
import javax.mail.*;
import javax.mail.internet.*;
import javax.activation.*;

public class SimpleSendEmail {
    public static void main(String[] args) {

        String host = "your smtp host";
        String to = "bbbb@ddddd.com";
        String from = "xxxx@yyy.com";
        String subject = "My First Email";
        String messageText = "I am sending a message using the"
                + " JavaMail API.\n" + "Here type your message.";
        boolean sessionDebug = false;
        Properties props = System.getProperties();
        props.put("mail.host", host);
        props.put("mail.transport.protocol", "smtp");
        Session session = Session.getDefaultInstance(props, null);
        // Set debug on the Session so we can see what is going on
        // Passing false will not echo debug info, and passing true
        // will.
        session.setDebug(sessionDebug);
        try {
            Message msg = new MimeMessage(session);
            msg.setFrom(new InternetAddress(from));
            InternetAddress[] address = { new InternetAddress(to) };
            msg.setRecipients(Message.RecipientType.TO, address);
            msg.setSubject(subject);
            msg.setSentDate(new Date());
            msg.setText(messageText);

            Transport.send(msg);
        } catch (MessagingException mex) {
            mex.printStackTrace();
        }
    }
}

答案 1 :(得分:2)

从一般意义上说,这是不可能的。

需要 SMTP服务器才能发送电子邮件。因此,您需要知道此服务器的详细信息以建立SMTP连接 - 至少是主机名(和端口,但通常可以假设这是默认值25)。

然后,SMTP服务器本身可能需要身份验证。在这种情况下,您需要提供足够的信息以保证其满意 - 可能是委托人(/用户名)和信用卡(/密码)。

如果您发现允许匿名中继的SMTP服务器,即允许您通过它发送邮件而不先进行身份验证,那么您当然可以跳过身份验证步骤,也不需要密码。

但是你仍然需要一个SMTP服务器来进行发送 - 所以你不能以某种方式发送一封只包含一对地址的电子邮件。

答案 2 :(得分:1)

您可能希望使用SMTP身份验证,因为任何允许公开匿名中继的SMTP服务器都会被黑名单列为垃圾邮件来源。

您可以运行自己允许中继的本地SMTP服务器,也可以根据您使用的应用程序服务器,配置服务器以在JNDI中放置身份验证会话,然后查找它们。您不必编写用户名和密码的代码,但仍需将它们提供给应用服务器。