2

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

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在不验证发件人地址的情况下发送邮件
4

3 回答 3

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();
        }
    }
}
于 2012-07-30T12:25:44.100 回答
2

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

需要一个 SMTP 服务器才能发送电子邮件。因此,您需要知道该服务器的详细信息以建立 SMTP 连接——至少,主机名(和端口,尽管通常可以假定为默认值 25)。

然后 SMTP 服务器本身可能需要身份验证。在这种情况下,您需要有足够的信息来保持它的快乐——可能是委托人(/用户名)和信用(/密码)。

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

但是您仍然需要一个 SMTP 服务器来进行发送 - 所以您不能以某种方式发送带有“仅”一对地址的电子邮件。

于 2012-07-30T11:49:06.810 回答
1

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

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

于 2012-07-30T17:23:33.443 回答