电源应用程序:存储信息并通过电子邮件发送

发布于 2025-02-10 19:48:57 字数 399 浏览 1 评论 0原文

我正在使用Microsoft Power应用程序来创建一个数字培训标志,其中必须存储学员的数据并填写一旦填写,该数据必须通过电子邮件发送给培训师,以确认完成。

我了解如何在按钮的按钮上创建和发送电子邮件,但是我很难发送所需的信息。

我需要能够发送员工的姓名(该名称已输入文本框,以及通过复选框选择的学员选择的内容)。

这是一个可以更好地理解的屏幕截图: ”在此处输入图像说明” 如果您可以在任何部分提供帮助,就非常感谢!

I am using Microsoft Power Apps to create a digital training sign off sheet in which data of a trainee must be stored and once filled out, that data must be sent via email to the trainer as a sort of confirmation of completion.

I understand how to create and send an email on the press of a button but I am having difficulty sending the information I need.

I need to be able to send the name of the employee (which is entered in a textbox, as well as what the trainee selected through the checkbox).

Here is a screenshot to better understand:enter image description here
If you can help at any part of this it is greatly appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回忆躺在深渊里 2025-02-17 19:48:57

我相信您需要确保在发送电子邮件之前不要重置输入。从本质上讲,您不想在发送电子邮件行动发送之前清除信息。

如果当前用户正在将电子邮件发送给自己,则可以通过使用用户()访问当前用户的电子邮件。电子邮件

从复选框中访问用户选择的用户,您必须用“ .Selected”以“ 。

尝试这样的事情:

Navigate(xxxx);
Office365Outlook.SendEmailV2(
  User().Email,
  "Email Subject",
  "Email body beginning" & checkbox1.Selected.Text & "email body ending."
);
Reset(xxxx);
Reset(xxxx);

I believe you need to make sure you're not resetting the inputs before you send the email. Essentially you don't want to clear your information before the email action can send.

If the current user is getting the email sent to themselves you can access the current user's email by using User().Email

To access the users selected content from the checkboxes, you have to write out the name of the checkbox with a ".Selected.Value" or ".Text" after it.

Try something like this:

Navigate(xxxx);
Office365Outlook.SendEmailV2(
  User().Email,
  "Email Subject",
  "Email body beginning" & checkbox1.Selected.Text & "email body ending."
);
Reset(xxxx);
Reset(xxxx);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文