佳礼资讯网

 找回密码
 注册

ADVERTISEMENT

查看: 961|回复: 2

在WINXP+IIS/SMTP+Tomcat上send email..

[复制链接]
发表于 2-9-2006 03:38 PM | 显示全部楼层 |阅读模式
出现
javax.mail.SendFailedException: Invalid Addresses; nested exception is: com.sun.mail.smtp.SMTPAddressFailedException: 550 5.7.1 Unable to relay for 456@yahoo.com

有谁知道是什么原因吗?

<%@ page import=" javax.mail.*, javax.mail.internet.*, javax.activation.*, java.util.*"%>
<%
try{
    Properties props = new Properties();

    Session sendMailSession;
    Transport transport;

    sendMailSession = Session.getInstance(props, null);

    props.put("mail.smtp.host", "localhost");

    Message newMessage = new MimeMessage(sendMailSession);

    newMessage.setFrom(new InternetAddress("123@yahoo.com"));
        
    newMessage.setRecipient(Message.RecipientType.TO, new InternetAddress("456@yahoo.com"));

    newMessage.setSubject("subject send mail");                     
    newMessage.setText("test send content");

    transport = sendMailSession.getTransport("smtp");
    transport.send(newMessage);
%>
<P>Your mail has been sent.</P>
<%
} catch(MessagingException m)
{
out.println(m.toString());
}

%>

[ 本帖最后由 jasonmun 于 2-9-2006 03:40 PM 编辑 ]
回复

使用道具 举报


ADVERTISEMENT

发表于 2-9-2006 04:30 PM | 显示全部楼层
回复

使用道具 举报

 楼主| 发表于 2-9-2006 05:05 PM | 显示全部楼层
谢谢,已经找到问题所在了..
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

 

ADVERTISEMENT



ADVERTISEMENT



ADVERTISEMENT

ADVERTISEMENT


版权所有 © 1996-2023 Cari Internet Sdn Bhd (483575-W)|IPSERVERONE 提供云主机|广告刊登|关于我们|私隐权|免控|投诉|联络|脸书|佳礼资讯网

GMT+8, 14-11-2024 02:56 AM , Processed in 0.917794 second(s), 25 queries , Gzip On.

Powered by Discuz! X3.4

Copyright © 2001-2021, Tencent Cloud.

快速回复 返回顶部 返回列表