当我使用SES将电子邮件从gmail发送到特定地址时,邮件会被正确地发送
对于瞬态->通用AWS说#include <vector>
#include <fstream>
std::vector readMnistImages(int amount){
fstream f;
f.open("train-images.idx3-ubyte");
std::vector <std::vector<float>> out;
// What goes in here?
return out;
}
std::vector readMnistLabels(int amount){
fstream f;
f.open("train-labels.idx1-ubyte");
std::vector <int> out;
// What goes in here?
return out;
}
如果我不知道该如何解决该问题?
The recipient's email provider sent a general bounce message. You might be able to send a message to the same recipient in the future if the issue that caused the message to bounce is resolved.
答案 0 :(得分:0)
您无能为力,似乎接收方正在检查IP信誉并发现SES IP(发送IP)54.240.8.90在黑名单中,它还向您发送了带有自定义消息“ smtp; 535 5.7”的退回邮件.8错误:被来自54.240.8.90“的块地址检查阻止。
似乎他们正在使用SORBS SPAM。
https://mxtoolbox.com/SuperTool.aspx?action=blacklist%3a54.240.8.90&run=toolpage
http://www.sorbs.net/cgi-bin/db
可以尝试的事物:
从您自己的SORBS中删除IP(可能会再次添加)
联系AWS与他们联系以将其从黑名单中删除。
尝试专用IP池。