如何使用Azure Logic应用程序通过Azure Blob存储中的电子邮件发送文件?
我正在尝试从Azure存储中的容器中获取文件,并使用Logic App将其发送到我的人员电子邮件: 这是我在逻辑应用程序设计器中的模板:
,这是我的容器:
< a href =“ https://i.sstatic.net/vfw0e.png” rel =“ nofollow noreferrer”>
以及我在逻辑应用程序设计器中的模板中遇到的错误: 指定的资源名称包含无效字符。
这是错误的屏幕示声:
I'm trying to get the files from container in azure storage and to send it to my personnel email using logic app :
this is my template in logic app designer :
and this is my container :
and this the error that I got in my template in logic app designer :
The specifed resource name contains invalid characters.
this is the screenshot of the error :
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
获得Blob内容(v2)
中从我们的结尾重现后,您提到blob为“名称”,但它指的是提及斑点的路径。因此,这是在将Blob从名称
更改为PATH
之后的工作。结果:
After reproducing from our end while in
Get blob content (V2)
you've mentioned Blob to be 'Name', but it refers to mention path to the blob. Hence, This was working after changing Blob fromName
toPath
.RESULTS: