TF-3515 Add save email as template feature
This commit is contained in:
@@ -43,9 +43,15 @@ mixin EmailActionController {
|
||||
mailboxDashBoardController.openComposer(ComposerArguments.editDraftEmail(presentationEmail));
|
||||
}
|
||||
|
||||
void editAsNewEmail(PresentationEmail presentationEmail) {
|
||||
void editAsNewEmail(
|
||||
PresentationEmail presentationEmail, {
|
||||
EmailId? savedEmailTemplateId,
|
||||
}) {
|
||||
mailboxDashBoardController.openComposer(
|
||||
ComposerArguments.editAsNewEmail(presentationEmail),
|
||||
ComposerArguments.editAsNewEmail(
|
||||
presentationEmail,
|
||||
savedEmailTemplateId: savedEmailTemplateId,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user