Azure服务用于发送短信和电子邮件通知。

huangapple go评论65阅读模式
英文:

Azure service to send SMS and Email notifications

问题

在AWS中,我主要使用了AWS SNS,它可以发送短信和电子邮件通知。在Azure中,似乎替代品是Azure通知中心(Azure Notification Hub),但它似乎无法执行此操作。显然,它只能发送推送通知。

在Azure中,您可以使用哪种服务来实现短信和电子邮件通知(包括电子邮件模板)?

英文:

I have mainly worked in AWS and there is AWS SNS which can send SMS and email notifications. The alternative in Azure appears to be Azure Notification Hub, which cannot do this. Apparently it only sends push notifications.

Is there a service that I could use to implement SMS and Email notifications (including email templates) in Azure?

答案1

得分: 2

Azure Communication Services是基于云的服务,提供REST API和客户端库SDK,可帮助您将通信集成到您的应用程序中。您可以在不必成为媒体编码或电话技术专家的情况下将通信添加到您的应用程序中。

来自:Azure Communication Services是什么?

Azure Communication Services提供了多种选项,其中包括聊天、电子邮件和短信。

有关如何发送短信消息发送电子邮件的详细文章。

编辑:
Azure Logic Apps是一个云平台,您可以在其中创建和运行自动化工作流,几乎不需要编写代码。通过使用可视化设计工具并选择预构建操作,您可以快速构建集成和管理您的应用程序、数据、服务和系统的工作流。

因此,Logic Apps不是用于发送短信或电子邮件的服务。Logic Apps是一个低代码平台,可让您非常轻松地调用一个服务来发送短信或电子邮件。其中一个这样的服务可能是Twilio,因为...

Twilio提供个性化的互动和可信的全球通信,以将您与客户连接起来。

当然,还有其他提供商,例如MessageBird、Spryng、CM.com等。

英文:

>Azure Communication Services are cloud-based services with REST APIs and client library SDKs available to help you integrate communication into your applications. You can add communication to your applications without being an expert in underlying technologies such as media encoding or telephony.

From: What is Azure Communication Services?

Azure Communication Services provides quite a few options, among which are chat, email and SMS.

There are decent articles on how you can Send an SMS message or Send an email.

EDIT:
>Azure Logic Apps is a cloud platform where you can create and run automated workflows with little to no code. By using the visual designer and selecting from prebuilt operations, you can quickly build a workflow that integrates and manages your apps, data, services, and systems.

So Logic Apps is not a service to send SMS or email. Logic Apps is a low-code platform that enables you to very easily call a service that sends an SMS or an email. And one such service could be Twilio, since ...
>Twilio powers personalized interactions and trusted global communications to connect you with customers.

Of course there are other providers, too, like MessageBird, Spryng, CM.com and more.

答案2

得分: 1

for sms/emails try Azure Communication Services: https://learn.microsoft.com/en-us/azure/communication-services/quickstarts/sms/send?tabs=windows&pivots=platform-azcli

For email notifications only you have also different choices. You can buy "kiosk" from 365 business licence, so you can create account only for this licence in your tenant, send email from code is standard smtp approach. For templating you can use whatever you want, as you can send html message loaded for example from resx file. You can also use service nammed SendGrid from Twilio. I recomend using SendGrid, only if there are really plenty of emails.

英文:

for sms/emails try Azure Communication Services: https://learn.microsoft.com/en-us/azure/communication-services/quickstarts/sms/send?tabs=windows&pivots=platform-azcli

For email notifications only you have also different choices. You can buy "kiosk" from 365 business licence, so you can create account only for this licence in your tenant, send email from code is standard smtp approach. For templating you can use whatever you want, as you can send html message loaded for example from resx file. You can also use service nammed SendGrid from Twilio. I recomend using SendGrid, only if there are really plenty of emails.

huangapple
  • 本文由 发表于 2023年2月16日 16:05:30
  • 转载请务必保留本文链接:https://go.coder-hub.com/75469360.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定