注册后很快就会禁用Mailgun帐户

时间:2016-12-13 11:43:11

标签: ruby-on-rails ruby mailgun

我正在尝试测试/探索mailgun的电子邮件服务。注册后不久,我收到以下文字

enter image description here

然后我认为可能是因为我还没有验证任何域名。但是,当我尝试添加域时,我收到以下消息:

enter image description here

当我尝试使用mailgun sandboxdomainconsole从ruby account disabled发送电子邮件时,我显示以下错误

enter image description here

似乎import java.util.Scanner; public class Cinema { public static void main(String[] args) { QueueWithArray q = new QueueWithArray(); Person person = new Person(); Scanner kybd = new Scanner(System.in); System.out.print("Join (j), leave (l) or end (e)? "); String action = kybd.nextLine(); while (!action.equalsIgnoreCase("e")) { if (action.equalsIgnoreCase("j")) { System.out.print("Enter your name: "); String name = kybd.nextLine(); person.setName(name); q.add(name); System.out.println("What is your age? "); int age = kybd.nextInt(); person.setAge(age); kybd.nextLine(); System.out.println(name + " is going to the cinema and is " + age + " years old."); } else if (action.equalsIgnoreCase("l")) { if (!q.isEmpty()) { if (person.getAge() >= 15 ) { System.out.println(q.remove() + " has left the queue and entered the cinema"); } else { System.out.println(q.remove() + " has left the queue, but is not old enough to watch the film"); } } else { System.out.println("Queue empty"); } } else { System.out.println("Invalid operation"); } System.out.print("Join (j), leave (l) or end (e)? "); action = kybd.nextLine(); } } } 就像这里的问题一样。我刚刚signedup,我的帐户被禁用。对此有何帮助?

1 个答案:

答案 0 :(得分:1)

所以你偶然发现了一些mailgun用来过滤掉垃圾邮件帐户的自动检查。这并不意味着您的意图或使用是垃圾邮件,可能是因为IP地址过去曾被标记过。

这是他们的网页,它解释了发生了什么以及他们需要您重新启动帐户的信息。

https://help.mailgun.com/hc/en-us/articles/202850080-What-does-business-verification-is-required-mean-