I have an email configuration setup for the mail "noreply@12b3.games".
I tried the following things to send an email with it:
-
Send an email using the AppHQ Console (Worked)
-
Send an email using custom code (Returns a successful response, but I dont receive any mail)
-
Send an email using client-side App42 API (Also returns successful response, but no mail is received)
Could it be an error from the API I am using or could it be a lingering issue of the .games top-level-domain?
I do the following to send the mail from code:
ServiceAPI serviceApi = new ServiceAPI(<API_KEY>, <SECRET_KEY>);
EmailService emailService = serviceApi.buildEmailService();
emailService.sendMail("redmatters@live.at", "Test Mail", "Hello, this is a test!", "noreply@12b3.games", EmailMIME.PLAIN_TEXT_MIME_TYPE);
As stated before, the above snippet returns a successful response without any errors.
My Application name is "EndCycleOnline", I added the shephertz team as a collaborator.