公司自己的smtp服务器,支持不输入账号密码发送邮件在nodejs中只需要进行如下配置就可以成功发送:
```
const transporter = nodemailer.createTransport({
host: SMTP_ADDRESS,
port: 25,
secure: false // true for 465, false for other ports
});
```
在Java中试了很多次都不能发送成功,代码如下:
```
public static void main(String[] args) throws MessagingException {
// 收件人电子邮箱
String to = "theo.zheng@epiroc.com";
// 发件人电子邮箱
String from = "web@gmail.com";
// 指定发送邮件的主机
String host = "SMTP.apac.epiroc.group";
// 获取系统属性
Properties properties = System.getProperties();
properties.setProperty("mail.transport.protocol", "smtp");
properties.setProperty("mail.smtp.port", "25");
// 设置邮件服务器
properties.setProperty("mail.smtp.host", host);
// 获取默认session对象
Session session = Session.getDefaultInstance(properties);
session.setDebug(true);
try{
// 创建默认的 MimeMessage 对象
MimeMessage message = new MimeMessage(session);
// Set From: 头部头字段
message.setFrom(new InternetAddress(from));
// Set To: 头部头字段
message.addRecipient(Message.RecipientType.TO,
new InternetAddress(to));
// Set Subject: 头部头字段
message.setSubject("This is the Subject Line!");
// 设置消息体
message.setText("This is actual message");
// 发送消息
Transport.send(message);
System.out.println("Sent message successfully....");
}catch (MessagingException mex) {
mex.printStackTrace();
}
}
```
求大神指导
您好,加在什么位置?
试了一下还是不行,一直停在:DEBUG SMTP: trying to connect to host "SMTP.apac.epiroc.group", port 25, isSSL false
properties.setProperty("mail.smtp.auth", "false")// 不需要验证用户名密码