Set BlockList layout

[MAILPOET-5688]
This commit is contained in:
Jan Lysý
2023-11-24 18:06:01 +01:00
committed by Rostislav Wolný
parent e1df697ce7
commit aa40d7eb7b
8 changed files with 46 additions and 4 deletions

View File

@ -111,6 +111,16 @@ class SettingsController {
return $settings;
}
/**
* @return array{contentSize: string, layout: string}
*/
public function getLayout(): array {
return [
'contentSize' => self::EMAIL_WIDTH,
'layout' => 'constrained',
];
}
public function getEmailContentStyles(): array {
return self::DEFAULT_EMAIL_CONTENT_STYLES;
}