将Azure Blob存储CSV文件作为附件发送给Microsoft Azure上的用户

时间:2019-03-13 16:44:54

标签: azure email-attachments azure-logic-apps azure-machine-learning-studio azure-blob-storage

我已经在Microsoft Azure中创建了一个Logic App。我先有一个调度程序重复发生,然后再调用带有作业输入和输出的Azure ML批处理作业。现在,在此之后,我必须在运行Azure ML作业后使用Azure中生成的azure blob存储.csv文件向用户发送电子邮件。因此,在运行带有作业输入和输出的Azure ML批处理作业后,如何将天蓝色的Blob存储文件发送给用户?

1 个答案:

答案 0 :(得分:1)

根据您的描述,我假设您只是不知道要在“发送电子邮件”操作中添加附件。这是Logic Apps流程。

您应该在Send an email action下的Attachments勾号Add new parameter中,然后才能添加附件。如果动态内容中没有File Content,则可以转到code view,然后在其中编辑Send_an_email操作,ContentBytes下的Attachments应该是@{base64(body('Get_blob_content'))}

enter image description here

enter image description here

enter image description here

这是测试邮件的结果。 csv文件内容正确。

enter image description here