Hi @SabariDev
It sounds like you’re trying to send emails from your Spring Boot application using the Azure Email Communication Service, but you can’t find the connection string and access key parameters in the properties section.
1.First, ensure you’re looking in the right place on the Azure portal. You can find your connection string and access key in the Azure portal under your Email Communication resource.
Go to your Email Communication service.
Look for the “Keys” or "Connection Strings" section.
2.When you find the connection string, it should look something like this:
String connectionString = "endpoint=https://<resource-name>.communication.azure.com/;accesskey=<access-key>";
Make sure you replace <resource-name> and <access-key> with your actual resource name and access key.
Once you have the connection string, you can set up the email client in your Spring Boot application like this:
EmailClient emailClient = new EmailClientBuilder()
``.connectionString(connectionString)
``.buildClient();
references:
https://learn.microsoft.com/en-us/answers/questions/1616248/how-to-get-the-connection-string-from-the-email-co
Please accept as "Yes" if the answer provided is useful , so that you can help others in the community looking for remediation for similar issues.