AWS SES. DKIM in email has wrong domain.

0

After all verification (easy DKIM option) I try send email. Via console it is work perfrect - DKIM record in test email has correct domain - my own. But when I try to do via API - it is contains "amazonses.com" (I see email in GMAIL via Show Original)

await _emailClient.SendEmailAsync(new()
			{
				FromEmailAddress = "noreply@mydomain.com",
				Destination = new() { ToAddresses = new() { CreateAddress(email.ToAddress, email.ToAlias) } },
				Content = new()
				{
					Simple = new()
					{
						Subject = new() { Data = email.Name },
						Body = new()
						{
							Text = CreateContent(email.Text)
						}
					}
				}
			}, cancellationToken);

Should I use some extra property or missed some magic method in API?

Mike
asked a year ago238 views
2 Answers
0

Cancelling my question. The reason was in different regions.

Mike
answered a year ago
0

This can also occur if you have the email address verified and have DKIM signing disabled for the email address identity. The more-specific email address identity takes precedence over the domain identity.

AWS
Jesse_T
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions