形式的动态收件人

时间:2019-05-16 20:53:14

标签: forms typo3 fluid extbase

我有一个自定义扩展名,其中包含教师的名单和详细信息。在详细信息页面上,我包括带有代码的表单:

<formvh:render persistenceIdentifier="1:/form_definitions/myform.yaml" />

我需要使用页面上显示的老师的电子邮件来设置收件人。我该怎么办?

1 个答案:

答案 0 :(得分:1)

您可以通过编写custom form finisher来实现。

  • 在您的表单中添加一个隐藏字段,其中包含老师的ID
  • 在表单完成程序中获取该ID,并通过存储库加载教师模型

表单整理程序的一个示例(不完整),它从自定义模型加载收件人数据并将邮件发送到此特定数据:

class EmailToContactPersonFinisher extends EmailFinisher
{
/**
 * Executes this finisher
 * @see AbstractFinisher::execute()
 *
 * @throws FinisherException
 */
protected function executeInternal()
{
    /** @var FormRuntime $formRuntime */
    $formRuntime = $this->finisherContext->getFormRuntime();
    if ($formRuntime->getResponse()->getRequest()) {
        if ($formRuntime->getResponse()->getRequest()->hasArgument('contactPerson')) {
            $objectManager = GeneralUtility::makeInstance(ObjectManager::class);
            /** @var ContactPersonRepository $repository */
            $contactPersonRepository = $objectManager->get(ContactPersonRepository::class);
            /** @var ContactPerson $contactPerson */
            $contactPerson = $contactPersonRepository->findByUid($formRuntime->getResponse()->getRequest()->getArgument('contactPerson'));
        }
    }
    // override contactPerson related options
    if ($contactPerson instanceof ContactPerson) {
        if ($contactPerson->getEmail()) {
            $recipientAddress = $contactPerson->getEmail();
        }
    }
    $this->setOption('recipientAddress', $recipientAddress);
    parent::executeInternal();
}
}

您也可以查看标准的emailFinisher,它使您可以快速了解架构。 sysext / form / Classes / Domain / Finishers / EmailFinisher.php