これは私だけの問題かもしれません。mailgun のアカウントのドメイン名の下に次のメッセージが表示されます。
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);
}
}];
これはパースの例です。そして、ログにエラーメッセージが表示されるので、これは本来あるべきことをしていると思います。
ヒットしている私のクラウドコードは次のとおりです。
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");
}
});
});
送信者として実際のメールアドレスがあり、受信者として別の既知のメールアドレスがあります。私はいつもエラー応答を返します。そこに実際のドメインとキーがあります。私のカスタム電子メール ドメイン名の下にある mailgun の私のアカウントには、次のメッセージがあります。
Warning: Some of your domains (in red) have DNS configuration issues.
私はこれについて何をすべきか分かりません。それが私の唯一の問題かもしれないことは理解していますが、これを解決するにはどうすればよいですか?