2011-12-21 49 views
0

我正在爲在Symfony中發送郵件編寫郵件模塊。我使用模塊模板文件夾中的partials來創建電子郵件的正文 - 每個文件都有純文本和html版本。是否有可能將Symfony部分放在單獨的目錄中?

我想組織他們在不同的文件夾中的模板,例如:

 

templates/delete-comment/_plain.php 
templates/delete-comment/_html.php 
... 
templates/some-action/_plain.php 
templates/some-action/_html.php 

有沒有辦法來實現這一目標?很明顯,我試圖這樣

回答

0

我也試過類似的事情,沒有運氣。我正在使用不同的方法來組織我的電子郵件模板。我通常爲我的電子郵件模板創建一個單獨的模塊,併爲我的分支使用描述性名稱。我結束了這樣的事情:

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

我認爲是相當理性的。謝謝。 – lilly 2011-12-22 09:48:37

相關問題