Helge Kunst
Posts: 5
Joined: 2005-09-15
|
Hi,
is it possible to cancel the send-process in the Event "adxOutlookEvents_ItemSend"? We try to check attachments and prevent a mail from sending, if special files are attached.
Regards,
Helge |
|
Sergey Grischenko
Add-in Express team
Posts: 7235
Joined: 2004-07-05
|
Hi Helge.
You can use the following code to cancel the send-process in Outlook:
private void adxOutlookEvents_ItemSend(object sender, AddinExpress.MSO.ADXOlItemSendEventArgs e)
{
e.Cancel = true;
}
|
|
Helge Kunst
Posts: 5
Joined: 2005-09-15
|
Pretty simple, thank you!
Helge |
|