首页
学习
活动
专区
工具
TVP
发布
精选内容/技术社群/优惠产品,尽在小程序
立即前往

如何在托管的Google Apps上使用Zend_Mail_Transport_Smtp?

在托管的 Google Apps 上使用 Zend_Mail_Transport_Smtp 时,您需要遵循以下步骤:

  1. 首先,确保您已经在 Google Apps 上创建了一个帐户,并具有访问托管的 Google Apps 的权限。
  2. 在您的 Google Apps 帐户中,导航到“管理员”页面。
  3. 在“管理员”页面中,单击“应用程序设置”选项卡。
  4. 在“应用程序设置”页面中,向下滚动到“电子邮件发送”部分。
  5. 在“电子邮件发送”部分中,单击“配置电子邮件发送”按钮。
  6. 在“配置电子邮件发送”页面中,选择“使用外部服务器”选项。
  7. 在“SMTP 服务器”字段中,输入您的 Zend_Mail_Transport_Smtp 服务器的地址。
  8. 在“端口”字段中,输入您的 Zend_Mail_Transport_Smtp 服务器的端口号。
  9. 在“发件人地址”字段中,输入您的发件人地址。
  10. 在“用户名”和“密码”字段中,输入您的 Zend_Mail_Transport_Smtp 服务器的用户名和密码。
  11. 单击“保存更改”按钮以保存您的更改。

现在,您已经成功地在托管的 Google Apps 上使用 Zend_Mail_Transport_Smtp 进行电子邮件发送。如果您需要进一步的帮助,请联系 Google Apps 的支持团队。

页面内容是否对你有帮助?
有帮助
没帮助

相关·内容

  • Java---通过smtp模拟发信

    public class MailUtil { public static MimeMessage createMimeMessage(Session session, String sendMail, String receivename, String receiveMail, String subject, String content) throws Exception { // 1. 创建一封邮件 MimeMessage message = new MimeMessage(session); // 2. From: 发件人 message.setFrom(new InternetAddress(sendMail, "发件人名称", "UTF-8")); // 3. To: 收件人(可以增加多个收件人、抄送、密送) message.setRecipient(MimeMessage.RecipientType.TO, new InternetAddress(receiveMail, receivename, "UTF-8")); // 4. Subject: 邮件主题 message.setSubject(subject, "UTF-8"); // 5. Content: 邮件正文(可以使用html标签) MimeBodyPart text = new MimeBodyPart(); text.setContent(content, "text/html;charset=UTF-8"); MimeMultipart mp = new MimeMultipart(); mp.addBodyPart(text); mp.setSubType("mixed"); message.setContent(mp); message.saveChanges(); // 6. 设置发件时间 message.setSentDate(new Date()); // 7. 保存设置 message.saveChanges(); return message; } public static void sendmail(String content,String recivemail) throws Exception{ Properties props = new Properties(); props.put("mail.smtp.host", "smtp服务器地址"); props.put("mail.smtp.starttls.enable","true");//使用 STARTTLS安全连接 props.put("mail.smtp.port", "smtp服务器端口"); //google使用465或587端口 props.put("mail.smtp.auth", "true"); // 使用验证 props.put("mail.debug", "true"); Session mailSession = Session.getInstance(props,new MyAuthenticator("发信的邮箱地址","发信的邮箱密码")); Transport transport = mailSession.getTransport("smtp"); transport.connect("smtp服务器地址","发信的邮箱地址","发信的邮箱密码"); MimeMessage m=MailUtil.createMimeMessage(mailSession, "发件邮箱","收件人姓名", recivemail,"主题",content); transport.sendMessage(m, m.getAllRecipients()); transport.close(); } } class MyAuthenticator extends Authenticator{ String userName=""; String password=""; public MyAuthenticator(){ } public MyAuthenticator(String userName,String password){ this.userName=userName; this.password=password; } protected PasswordAuthentication getPasswordAuthentication(){ return new PasswordAuthentication(

    02
    领券