我正在尝试使用谷歌地图javascript API,但在Chrome控制台中我收到以下错误:
HtmlEmail email = new HtmlEmail();
email.setHostName("webmail.diastecnologia.com.br");
email.setSmtpPort(587);
email.setAuthenticator(new DefaultAuthenticator("marcelo", "senha"));
email.setStartTLSEnabled(bkEmail.getStatusTlsStart());
email.setFrom("marcelo@diastecnologia.com.br", "BKOffice");
email.setSubject("Recuperação de Senha");
email.setHtmlMsg("<html><body><h1>TESTE!!!</h1></body></html>");
email.addTo("marueru@gmail.com", "Maruero");
email.send();
我已将本地服务器更改为以https运行,我还需要做什么?