We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b046e7d commit c3484d7Copy full SHA for c3484d7
Azure_ACS_Email_Python/SendEmail.py
@@ -1,8 +1,8 @@
1
from azure.communication.email import EmailClient
2
from azure.core.credentials import AzureKeyCredential
3
4
-credential = AzureKeyCredential("ii/YlHlUasc+0RVWm7BCVHUQ5OBM5TWiOv7V0cfqIwTOM7PCV4IUa6GfR0+WnoqoV++F0HkbRYdFunp/34GPSA==")
5
-endpoint = "https://demo-acs-cloudquicklabs.unitedstates.communication.azure.com/"
+credential = AzureKeyCredential("<Azure Communication Service Key>")
+endpoint = "<Azure Communication Service Endpoint>"
6
client = EmailClient(endpoint, credential)
7
8
message = {
@@ -14,7 +14,7 @@
14
"recipients": {
15
"to": [
16
{
17
- "address": "vrchinnarathod@gmail.com",
+ "address": "sdfsgd@gmail.com",
18
"displayName": "Cloud Quick Labs"
19
}
20
]
0 commit comments