Merge branch 'fronkdev' into 'master'

Added Mailtemplate::renderBody() function

See merge request fronk/thetool!631
This commit is contained in:
Frank Schubert
2024-09-17 16:19:37 +00:00
4 changed files with 57 additions and 6 deletions
@@ -13,7 +13,7 @@ final class CreateMailtemplate extends AbstractMigration
$table->addColumn("name", "string", ["null" => false, "limit" => 255]);
$table->addColumn("code", "string", ["null" => false, "limit" => 64]);
$table->addColumn("description", "string", ["null" => true, "default" => null, "limit" => 1024]);
$table->addColumn("subject", "string", ["null" => false, "limit" => 255]);
$table->addColumn("subject", "string", ["null" => true, "default" => null, "limit" => 255]);
$table->addColumn("body_text", "text", ["null" => true, "default" => null]);
$table->addColumn("body_html", "text", ["null" => true, "default" => null]);
$table->addColumn("note", "text", ["null" => true, "default" => null]);