是否可以将 Symfony 部分放在单独的目录中?

发布于 2024-12-22 01:04:56 字数 297 浏览 2 评论 0原文

我正在为 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 技术交流群。

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

发布评论

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

评论(1

嘴硬脾气大 2024-12-29 01:04:56

我也尝试过类似的事情但没有运气。我正在使用不同的方法来组织我的电子邮件模板。我通常为我的电子邮件模板创建一个单独的模块,并为我的部分模板使用描述性名称。我最终得到了这样的结果:

email_templates/_delete_comment_plain.php
email_templates/_delete_comment_html.php
...
email_templates/_some_action_plain.php
email_templates/_some_action_html.php

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:

email_templates/_delete_comment_plain.php
email_templates/_delete_comment_html.php
...
email_templates/_some_action_plain.php
email_templates/_some_action_html.php
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文