1

我试图实现typo3-formhandler。我遵循了本教程:如何逐步设置简单的表单 ,但我不断收到此错误:

找不到附件!邮件未发送至:[邮件地址]

我为整个调试日志制作了几张图片: http://img6.imagebanana.com/img/tg5sjj9x/Bildschirmfoto.png http://img6.imagebanana.com/img/f6btnnxq/Bildschirmfoto1.png

4

1 回答 1

0

问题是,我没有在我的服务器上配置 PHP 的邮件功能。我只是假设表单处理程序会使用 TYPO3-Configuration,但它没有。

从 1.2 版开始,您可以告诉 FormHandler 使用 TYPO3 的配置: http ://www.typo3-formhandler.com/documentation/release-notes/version-120/

该问题的正确 Typoscript-Script 是:

plugin.Tx_Formhandler.settings {  
  debug = 1   
  templateFile = fileadmin/contactform/1-contactform.html  
  formValuesPrefix = formhandler   
  finishers {    
    1 {      
      class = Tx_Formhandler_Finisher_Mail
      config {
        mailer.class = Mailer_TYPO3Mailer
      }
    }    
    2 {      
      class = Tx_Formhandler_Finisher_SubmittedOK      
      config.returns = 1    
    }  
  }
}
于 2012-10-10T08:11:25.117 回答