This forum is for programmers who have questions about the source code.
-
gitter
- Posts: 11
- Joined: Sun Aug 09, 2015 10:31 am
Post
by gitter » Fri Aug 30, 2019 12:43 pm
Hello,
could you please add a hook (addCode) in FormEmailMessageEdit to the most oldest possible release.
Should be at the end of this method:
Code: Select all
private void FormEmailMessageEdit_Load(object sender, System.EventArgs e) {
code should be added after:
on line: 605
new hook:
Code: Select all
Plugins.HookAddCode(this, "FromEmailMessageEdit_Load_end", _emailMessage, emailPreview);
Thank you
-
PatrickC
- Posts: 56
- Joined: Thu Jun 06, 2019 11:37 am
Post
by PatrickC » Tue Sep 03, 2019 10:20 am
Hello,
The hook has been added to beta version 19.2.21.
Code: Select all
EmailSaveEvent.Fired+=EmailSaveEvent_Fired;
Cursor=Cursors.Default;
Plugins.HookAddCode(this,"FormEmailMessageEdit_Load_end",_emailMessage,emailPreview);
}