是否可以将 Symfony 部分放在单独的目录中?
我正在为 Symfony 中的邮件编写邮件模块。我生成了一封电子邮件的正文,我在模块模板文件夹中使用部分内容 - 每个都有其纯文本和 html 版本。
我想将它们组织在模板内的单独文件夹中,例如:
templates/delete-comment/_plain.php templates/delete-comment/_html.php ... templates/some-action/_plain.php templates/some-action/_html.php
有没有办法实现此目的?显然我正在尝试这样
I'm writing mailing module for mailing in Symfony. I genereate body of an email I use partials in a module templates folder - each has its plain text and html version.
I want to organise them in separate folders inside templates such as:
templates/delete-comment/_plain.php templates/delete-comment/_html.php ... templates/some-action/_plain.php templates/some-action/_html.php
Is there a way to achieve this? Obviously I was trying so
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也尝试过类似的事情但没有运气。我正在使用不同的方法来组织我的电子邮件模板。我通常为我的电子邮件模板创建一个单独的模块,并为我的部分模板使用描述性名称。我最终得到了这样的结果:
I have tried similar thing with no luck too. I am using a different approach to organize my email templates. I usually create a separate module for my email templates and use descriptive names for my partials. I end up with something like that: