Advertisement
Guest User

Untitled

a guest
Apr 19th, 2018
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. {
  2. "bindings": [
  3. {
  4. "name": "telemetryEvent",
  5. "type": "serviceBusTrigger",
  6. "direction": "in",
  7. "queueName": "threshold-email-queue",
  8. "connection": "Threshold-Email_RootManageSharedAccessKey_SERVICEBUS",
  9. "accessRights": "Manage"
  10. },
  11. {
  12. "type": "sendGrid",
  13. "name": "$return",
  14. "apiKey": "SendGridKey",
  15. "direction": "out",
  16. "from": "CTC <CTC@konnexio.com>"
  17.  
  18. {
  19. "personalizations": [{
  20. "to": [{
  21. "email": "recipient1@example.com"
  22. }],
  23. "cc": [{
  24. "email": "recipient2@example.com"
  25. }],
  26. "bcc": [{
  27. "email": "recipient3@example.com"
  28. }],
  29. "substitutions": {
  30. "%fname%": "recipient",
  31. "%CustomerID%": "CUSTOMER ID GOES HERE"
  32. }
  33. }]
  34. }
  35.  
  36. }
  37. ],
  38. "disabled": false
  39. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement