Power apps - 发送附件错误的电子邮件

问题描述 投票:0回答:1

大家早上好!

我是初学者,我正在制作一个强大的应用程序来发送带有多个附件的电子邮件。

我有 5 个附件控件。

它适用于使用 1 个附件控件发送电子邮件,下面是我的代码

Office365Outlook.SendEmailV2(
"[email protected]",
"Subject",
"Body",
{
    Attachments: ForAll(
        Attachment_Inspection_Record.Attachments,
        {
            ContentBytes: Value,
            Name: Name
        }
    )
})

但是如果发送带有 5 个附件控制附件的电子邮件会导致错误,下面是我的代码:

Office365Outlook.SendEmailV2(
"[email protected]",
"Subject",
"Body",
{
    Attachments: ForAll(
        Attachment_Inspection_Record.Attachments,
        {
            ContentBytes: Value,
            Name: Name
        },
        Attachment_CCM.Attachments,
        {
            ContentBytes: Value,
            Name: Name
        },
         Attachment_Sitephoto_1.Attachments,
        {
            ContentBytes: Value,
            Name: Name
        }
        Attachment_Sitephoto_2.Attachments,
        {
            ContentBytes: Value,
            Name: Name
        }
        Attachment_Sitephoto_3.Attachments,
        {
            ContentBytes: Value,
            Name: Name
        }
    )

    
});

有人可以帮忙吗? 非常感谢。

email outlook powerapps email-attachments powerapps-canvas
1个回答
0
投票

请编辑您的问题并添加有关您问题的更多信息。例如,错误消息是什么,错误消息何时出现(在运行应用程序期间,或在您键入此代码时)...

© www.soinside.com 2019 - 2024. All rights reserved.