这可能是我唯一的问题。我在我的邮箱帐户中的域名下收到了这条消息:
Warning: Some of your domains (in red) have DNS configuration issues.
我能为此做些什么呢?我尝试了一个巨大的随机域名,它做了同样的事情。
感谢您的关注!
我在MailGun中使用parse.com。我已经设置好了所有的解析工具,并且我已经用MailGun创建了一个帐号,并用MailGun添加了一个自定义域名。下面是我的iOS代码:
NSDictionary *params = [NSDictionary dictionaryWithObject:@"This is sent from your iPhone." forKey:@"text"];
[PFCloud callFunctionInBackground:@"emailGrocery" withParameters:params block:^(id object, NSError *error)
{
if(!error)
{
NSLog(@"Succeeded");
}
else
{
NSString *errorMsg = [[error userInfo] objectForKey:@"error"];
NSLog(@"%@", errorMsg);
}
}];这是来自parse的一个示例。我认为这是它应该做的,因为我在我的日志中得到了错误消息。
以下是我的云代码正在被攻击:
var Mailgun = require('mailgun');
Mailgun.initialize('domain.com', 'key');
Parse.Cloud.define("emailGrocery", function(request, response) {
Mailgun.sendEmail({
to: "myemail@gmail.com",
from: "myemail@gmail.com",
subject: "Hello from Cloud Code!",
text: "Using Parse and Mailgun is great!"
}, {
success: function(httpResponse) {
console.log(httpResponse);
response.success("Email sent!");
},
error: function(httpResponse) {
console.error(httpResponse);
response.error("Uh oh, something went wrong");
}
});
});我有我的实际电子邮件地址作为发送者和另一个已知的电子邮件地址作为接收者。我总是得到错误响应。我有一个实际的域名和密钥在那里。在我的邮箱帐户中,在我的自定义电子邮件域名下,有这样一条消息:
Warning: Some of your domains (in red) have DNS configuration issues.
我不知道我该怎么做。我意识到这可能是我唯一的问题,但我该如何解决这个问题呢?
发布于 2017-01-11 17:13:28
我想分享2个截图,可能有助于验证Namecheap中的邮件枪自定义域名…我用头撞了两天墙:)


邮件枪有一个按钮,检查您的DNS设置,有时它会给出假阴性,所以尝试几次
发布于 2013-12-07 07:18:48
您需要使用SPF和DKIM验证您的域。您可以通过添加TXT DNS记录来执行此操作。
欲了解更多信息,请访问https://documentation.mailgun.com/user_manual.html#verifying-your-domain。
发布于 2017-05-18 22:03:33
我在排除自己的故障时遇到了这个线程,并希望提供另一个主机的配置。我有一个网站上的VPS和域名注册星是主机。我正在WHM中配置DNS。请看我下面的例子:
This is the Mailgun page with the examples and check settings for the domain
https://stackoverflow.com/questions/18630957
复制相似问题