Replies: 5 comments 2 replies
-
Do you still see that error message when using a different SDK (for example, the AWS CLI I did find this post mentioning the same error message: https://stackoverflow.com/a/37528929 |
Beta Was this translation helpful? Give feedback.
-
Hi,
Using the portal console I am able to send from both emails, but not using
c# SDK (AWSSDK.SimpleEmailV2).
Thanks.
…On Thu, 1 Feb 2024 at 16:04, Daniel Pinheiro ***@***.***> wrote:
Do you still see that error message when using a different SDK (for
example, the AWS CLI send-email -
https://awscli.amazonaws.com/v2/documentation/api/latest/reference/ses/send-email.html)?
Our SDK doesn't throw that message so I assume it's coming from the service.
I did find this post mentioning the same error message:
https://stackoverflow.com/a/37528929
—
Reply to this email directly, view it on GitHub
<#3169 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AE6PQKOPSJCWT3JA36QEYA3YRO4KPAVCNFSM6AAAAABCU6TL3OVHI2DSMVQWIX3LMV43SRDJONRXK43TNFXW4Q3PNVWWK3TUHM4DGMZWGY4DM>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Would you be able to try it with the CLI as well? What I was interested in was if the result would be the different using the same |
Beta Was this translation helpful? Give feedback.
-
Hi.I got it working by changing the region to eu-north-1 which doesn’t make any sense considering that it was setup in the eu-west-1.Any ideas why would it fail? I don’t have access to CLI to try I am afraid.Thanks ViniOn 1 Feb 2024, at 17:29, Daniel Pinheiro ***@***.***> wrote:
Would you be able to try it with the CLI as well? What I was interested in was if the result would be the different using the same SendEmailRequest (which you didn't include in the original question). The console uses JS but it's not straightforward to see which parameters are set.
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Beta Was this translation helpful? Give feedback.
-
Glad you got it working, but yeah that seems odd. One thing I'd double check is that the e-mail setup was done in the same region you're calling the API - |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi,
I am trying to use AWS Simple Email v2 sandbox where both receiver and sender have their email address verified. However, I get an error saying "Email address is not verified. The following identities failed the check in region EU-WEST-1: x@x.com, y@y.com".
The code is pretty simple and it uses AWS guidelines:
var Client = new AmazonSimpleEmailServiceV2Client(
AmazonAccessKey,
AmazonSecretAccessKey,
new AmazonSimpleEmailServiceV2Config { RegionEndpoint = RegionEndpoint.GetBySystemName(AmazonRegion) }
);
var response = await Client.SendEmailAsync(request);
Any one knows how to overcome this problem?
Thanks,
Vini
Beta Was this translation helpful? Give feedback.
All reactions