第一个问题。
我正在寻找有关配置 Java 的帮助
更多详情:
Oracle linux JDK 1.7、Resin 3.1(是的,它很旧)、Google mail api v1(请参阅下面的maven依赖项)
我实现了一个GmailSender类,可以从我的应用程序发送电子邮件:
httpTransport = GoogleNetHttpTransport.newTrustedTransport();
...
private Credential authorizeServiceAccount() throws IOException, GeneralSecurityException {
Credential credential = new GoogleCredential.Builder()
.setTransport(httpTransport)
.setJsonFactory(JSON_FACTORY)
.setServiceAccountId(serviceAccountId)
.setServiceAccountPrivateKeyFromP12File(new File(privateKeyFileName))
.setServiceAccountScopes(SCOPES)
.setServiceAccountUser(serviceAccountUser)
.build();
return credential;
}
Gmail getGmailService() throws IOException, GeneralSecurityException {
Credential credential = authorizeServiceAccount();
return new Gmail.Builder(httpTransport, JSON_FACTORY, credential)
.setApplicationName(applicationName)
.build();
}
public void send(SimpleMailMessage simpleMailMessage) throws MailException {
Message m;
try {
MimeMessage mm = asMimeMessage(simpleMailMessage);
m = asMessage(mm);
} catch (IOException e) {
throw new MailPreparationException("Unable to create email", e);
} catch (MessagingException e) {
throw new MailPreparationException("Unable to create email", e);
}
try {
Gmail gmail = getGmailService();
m = gmail.users().messages().send("me", m).execute();
} catch (IOException e) {
throw new MailSendException("Unable to send mail", e);
} catch (GeneralSecurityException e) {
throw new MailSendException("Could not send email", e);
} catch (Throwable t) {
throw new MailSendException("Unexpected failure sending email", t);
}
String id = m.getId();
//System.out.println("Mail sent. Id is: " + id);
}
和专家配置:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-gmail</artifactId>
<version>v1-rev35-1.21.0</version>
</dependency>
<dependency>
<groupId>com.google.oauth-client</groupId>
<artifactId>google-oauth-client-jetty</artifactId>
<version>1.21.0</version>
</dependency>
例外——除了类定义问题之外,看起来基本不错:
20160326-15:15:54.481组织.Spring框架.mail.mail发送异常;嵌套异常 (0) 是: 20160326-15:15:54.481原因: java.lang.NoClassDefFound 错误: 无法初始化类(.java 20160326-15:54.481.java) 20160326-15:15:54.48.java 1 -15:15:54.481 在 java.net.URL.打开连接(URL.java:971) 20160326-15:15:54.481.java 在com.google.api.client.http.javanet.NetHttpTransport.buildRequest(NetHttpTransport.java:136) 20160326-15:15:54.481 at com.google.api.client.http.javanet.NetHttpTransport.buildRequest(NetHttpTransport.java:62) 20160326-15:15:54.54 20.java 160326-15:15:54.481.java at.java 20160326-15:5.java 426-15:15 5:54.481 at.java 网站:20160326-15:54.481 at 网站:.java 20160326-15:15:54.481 at 网站:20160326-15:54.48120160326-15:15:54.481 at 谷歌客户端请求.执行未parsed(抽象谷歌客户端请求.java.java:352) 20160326-15:15:54.481 at.java摘要谷歌客户端请求执行(摘要谷歌客户端请求.java:469) 20160326-15:15:54.481 在我的包装.gmailSender.send(GmailSender.java:155)
我已经尝试在我的树脂开始脚本中设置协议:
args="-jar $RESIN_HOME/lib/resin.jar -server-root $SERVER_ROOT -conf $config -server $SERVER_NAME"
#args="-Dhttps.protocols=TLSv1.2,TLSv1.1,TLSv1 -jar $RESIN_HOME/lib/resin.jar -server-root $SERVER_ROOT -conf $config -server $SERVER_NAME"
但这种变化似乎没有影响。我错过了什么??
谢谢!!
看起来 NoClassDefFound 错误是由 URL 连接类中引发异常初始化程序引起的,因为记录器未正确初始化。
测井在树脂3.1.5中进行了大修,我检查了树脂的发行说明,没有看到这个问题的报告。但是以防万一,我升级到树脂3.1.15,瞧——问题消失了。
底线——resin 3 . 1 . 5日志记录中有一个令人讨厌的错误,它会破坏java 7 https URL连接。谁知道呢....
使用java发送电子邮件的另一种方法
import java.util.Properties;
import javax.mail.Message;
import javax.mail.MessagingException;
import javax.mail.PasswordAuthentication;
import javax.mail.Session;
import javax.mail.Transport;
import javax.mail.internet.InternetAddress;
import javax.mail.internet.MimeMessage;
public class SendEmailUsingGMailSMTP {
public static void main(String[] args) {
// Recipient's email ID needs to be mentioned.
String to = "reciverEmail@gmail.com";//change accordingly
// Sender's email ID needs to be mentioned
String from = "testemail@gmail.com";//change accordingly
final String username = "testemail";//change accordingly
final String password = "yourPassword";//change accordingly
// Assuming you are sending email through relay.jangosmtp.net
String host = "smtp.gmail.com";
Properties props = new Properties();
props.put("mail.smtp.auth", "true");
props.put("mail.smtp.starttls.enable", "true");
props.put("mail.smtp.host", host);
props.put("mail.smtp.port", "587");
// Get the Session object.
Session session = Session.getInstance(props,
new javax.mail.Authenticator() {
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});
try {
// Create a default MimeMessage object.
Message message = new MimeMessage(session);
// Set From: header field of the header.
message.setFrom(new InternetAddress(from));
// Set To: header field of the header.
message.setRecipients(Message.RecipientType.TO,
InternetAddress.parse(to));
// Set Subject: header field
message.setSubject("Testing Subject");
// Now set the actual message
message.setText("Hello, this is sample for to check send "
+ "email using JavaMailAPI ");
// Send message
Transport.send(message);
System.out.println("Sent message successfully....");
} catch (MessagingException e) {
throw new RuntimeException(e);
}
}
}
如果你javax.mail.AuthenticationFailedException请转到gmail设置
https://www.google.com/settings/security/lesssecureapps
问题内容: 问题答案: $config = Array( ‘protocol’ => ‘smtp’, ‘smtp_host’ => 'ssl://smtp.googlemail.com’, ‘smtp_port’ => 465, ‘smtp_user’ => ‘xxx’, ‘smtp_pass’ => ‘xxx’, ‘mailtype’ => ‘html’, ‘charset’ => ‘iso-8
我已经讨论了这个问题,它在使用SSL的情况下运行良好 我也试过这个,它在某种程度上符合我的需要,但在我的情况下不起作用。 我也读过这个主题,但仍然无法在代码中不使用SSL发送电子邮件。 每次我发邮件时,它都会说“554例外,邮件被拒绝” 我真正需要的是使用: 邮件主机:“smtpout.secureserver.net” 港口编号:25 谢谢 幸福。
问题内容: 如何使用Outlook 2010发送带有附件的电子邮件(本地文件或Intranet中的文件)? 似乎不起作用。 问题答案: 不,这根本不可能。协议中对此没有规定,如果可能的话,这将是一个巨大的安全漏洞。 发送文件但让客户端发送我能想到的电子邮件的最佳方法是: 让用户选择一个文件 将文件上传到服务器 上传后让服务器返回随机文件名 在消息正文中建立一个包含上载文件的URL 的链接
我正在将Mailgun集成到我的iOS应用程序中,并尝试发送带有附件的电子邮件。电子邮件已发送,但附件似乎已被忽略。有什么想法吗?代码如下。我使用的是AFNetworking 2,我没有使用本机的Mailgun Objective-C SDK,因为它似乎没有得到维护。 我可以使用curl发送附件,例如:
我试图从我的应用程序发送电子邮件,我在android上的电子邮件客户端中看到了应有的链接,但当我检查电子邮件接收器时,没有链接。 这是我的代码: “文本”是html。 谢谢你。
问题内容: 我从服务器使用IMAP协议就像是接收电子邮件描述了这里。这工作得很好,我可以将电子邮件和附件存储在磁盘上。 问题: 当客户端尝试接收所有电子邮件时,是否可以从服务器删除文件,以使它们不再可用? 如果是这样,请告诉我如何。 问题答案: 您应该能够通过标准API来执行此操作。 首先,您需要获取Message要删除的(或消息)的引用-如果您成功阅读它们,那么您已经可以做到 这一点。现在,没有