JavaMe,使用TLS通过smtp.gmail.com发送邮件

时间:2015-02-10 21:44:45

标签: email java-me smtp embedded

我正在为Cinterion EHS5设备开发邮件客户端。该设备可以运行javaMe 3.2 我需要使用带有TLS的smtp.gmail.com端口587发送邮件。 现在我可以通过smtp.gmail.com使用SSL发送电子邮件,使用这样的代码。

SecureConnection sc =(SecureConnection)Connector.open("ssl://"+this.mailAccount.getSMTPserverAddress() + ":"+this.mailAccount.getSMTPport(),Connector.READ_WRITE, true);

我尝试了Blackberry开发人员的示例和大量变体,以使其与TLS一起使用。

   SecureConnection sc =(SecureConnection)Connector.open("tls://"+this.mailAccount.getSMTPserverAddress() + ":"+this.mailAccount.getSMTPport(),Connector.READ_WRITE, true);

没有工作。

有人知道解决这个问题的好方法吗? 链接,书籍,示例将不胜感激。

0 个答案:

没有答案