我试图实现typo3-formhandler。我遵循了本教程:How to set up a simple form 一步一步,但我一直收到这个错误:
未找到附件!邮件未发送至:[邮件地址]
我已经为整个调试日志做了几张照片: http://img6.imagebanana.com/img/tg5sjj9x/Bildschirmfoto.png http://img6.imagebanana.com/img/f6btnnxq/Bildschirmfoto1.png
答案 0 :(得分:0)
问题是,我没有在我的服务器上配置PHP的mail-Function。我只是假设formhandler会使用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
}
}
}