电子邮件已发送,但未在收件箱中发送。它是在垃圾邮件中。为什么会这样?

时间:2017-12-23 05:36:31

标签: java email server smtp

我正在制作一个发送电子邮件的程序。它已成功发送,但每当我查看我的电子邮件时,它都存储在垃圾邮件而不是收件箱中。有什么理由发生这种情况?

public static void send() {
        String to = "rchiluano@partnersolutions.com.ph";
        String from = "hryanmark@gmail.com";
        String host = "localhost";
        String msgbody ="Please Click the Link:\n";
        String linktest = "http://localhost:50000/first_ecom/VerifiedSuccessfuly.risc?ccstyle=defaultrisc";

        Properties properties = System.getProperties();
        properties.setProperty("mail.smtp.host", host);
        Session session = Session.getDefaultInstance(properties);


        try{
            MimeMessage message = new MimeMessage(session);
            message.setFrom(new InternetAddress(from));
            message.addRecipient(Message.RecipientType.TO,new InternetAddress(to));
            message.setSubject("Verify your Account.");
            message.setText(msgbody+linktest);


            Transport.send(message);
            System.out.println("Sent");

        }catch (MessagingException mex) {mex.printStackTrace();}

    }

2 个答案:

答案 0 :(得分:0)

你的ip不安全吗?

请更换其他服务。

答案 1 :(得分:0)

因为它是一种垃圾邮件。您的电子邮件from字段表示它是从hryanmark@gmail.com发送的,但您没有使用Gmail和相同的地址发送此电子邮件。这就像你使用假身份发送电子邮件。因此,partnersolutions.com.ph的传入邮件服务器认为它是垃圾邮件。