IBM bluemix 是否有某种传入或入站电子邮件服务或 API?
Does IBM bluemix have some sort of incoming or inbound email service or APIs?
是否使用 bluemix (https://console.ng.bluemix.net/) have any incoming mail system for their apps which is similar to Google App Engine's Receiving Mail system (https://cloud.google.com/appengine/docs/python/mail/receivingmail)。
谢谢。
PS:如果可能,请分享一些链接,以便我开始探索!!
正如在之前的回复中所建议的那样,Bluemix 使用 SendGrid
提供外发电子邮件服务
https://console.ng.bluemix.net/catalog/sendgrid/
对于传入电子邮件服务,Bluemix 上没有提供任何服务,但是使用它自己的 POP/IMAP 接口将 Bluemix 上的应用程序与外部电子邮件服务集成没有任何限制
如何将您的应用程序与外部电子邮件服务集成取决于您希望使用的 language/technology,例如对于 PHP,您可以使用其 IMAP 扩展名
http://php.net/manual/en/intro.imap.php
使用 IMAP 或 POP3 从外部服务读取
此外,使用外部电子邮件服务可能允许您使用该服务通过 SMTP 发送电子邮件,而不是使用 SendGrid:例如使用 PHP 运行时,您可以使用
https://github.com/PHPMailer/PHPMailer
与外部 SMTP 服务集成(通常与电子邮件帐户以及 POP3/IMAP 一起使用)
是否使用 bluemix (https://console.ng.bluemix.net/) have any incoming mail system for their apps which is similar to Google App Engine's Receiving Mail system (https://cloud.google.com/appengine/docs/python/mail/receivingmail)。
谢谢。
PS:如果可能,请分享一些链接,以便我开始探索!!
正如在之前的回复中所建议的那样,Bluemix 使用 SendGrid
提供外发电子邮件服务https://console.ng.bluemix.net/catalog/sendgrid/
对于传入电子邮件服务,Bluemix 上没有提供任何服务,但是使用它自己的 POP/IMAP 接口将 Bluemix 上的应用程序与外部电子邮件服务集成没有任何限制 如何将您的应用程序与外部电子邮件服务集成取决于您希望使用的 language/technology,例如对于 PHP,您可以使用其 IMAP 扩展名 http://php.net/manual/en/intro.imap.php 使用 IMAP 或 POP3 从外部服务读取 此外,使用外部电子邮件服务可能允许您使用该服务通过 SMTP 发送电子邮件,而不是使用 SendGrid:例如使用 PHP 运行时,您可以使用 https://github.com/PHPMailer/PHPMailer 与外部 SMTP 服务集成(通常与电子邮件帐户以及 POP3/IMAP 一起使用)