0

我打算使用 Google App Engine 来部署 Web 应用程序。如果其他用户在用户页面上进行了某些活动,应用程序会通过电子邮件向用户发送警报。在这种情况下,有什么方法可以通过电子邮件向用户发送通知?

4

1 回答 1

1

是的,您可以使用JavaMail 发送邮件。这是从文档中获取的示例:

import java.util.Properties;

import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.AddressException;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;

// ...
        Properties props = new Properties();
        Session session = Session.getDefaultInstance(props, null);

        String msgBody = "...";

        try {
            Message msg = new MimeMessage(session);
            msg.setFrom(new InternetAddress("admin@example.com", "Example.com Admin"));
            msg.addRecipient(Message.RecipientType.TO,
                             new InternetAddress("user@example.com", "Mr. User"));
            msg.setSubject("Your Example.com account has been activated");
            msg.setText(msgBody);
            Transport.send(msg);

        } catch (AddressException e) {
            // ...
        } catch (MessagingException e) {
            // ...
        }

发件人地址必须是以下类型之一也很重要:

  • 申请的注册管理员地址
  • 使用 Google 帐户登录的当前请求的用户地址。您可以使用用户 API 确定当前用户的电子邮件地址。用户的帐户必须是 Gmail 帐户,或者位于由 Google Apps 管理的域中。
  • 应用程序的任何有效电子邮件接收地址(例如 xxx@APP-ID.appspotmail.com)。
于 2013-11-03T23:00:18.640 回答