Empty Mail in Outbox

Add-in Express™ Support Service
That's what is more important than anything else

Empty Mail in Outbox
 
Thomas Lauer




Posts: 67
Joined: 2011-01-24
Hi,

i have a addin for outlook. the addin works as follows

1) User make a new mail
2) Klick in the mail to a button.
3) the addin close the orginal mail
4) make a new mail

after few seconds i get a empty mail in the outbox



[img]https://glshnu-my.sharepoint.com/:i:/g/personal/lauer_glsh_net/EW70qI8YymZJl7OiotqXmDoBvra_mRclt0UwNQe2zpnELQ?e=Fz1dvT[/img]

best regards
Thomas
Posted 29 Mar, 2018 04:26:45 Top
Andrei Smolin


Add-in Express team


Posts: 18830
Joined: 2006-05-11
Hello Thomas,

Maybe, you save the new email after creation? If not, turn all other COM add-ins off.


Andrei Smolin
Add-in Express Team Leader
Posted 29 Mar, 2018 04:53:41 Top
Thomas Lauer




Posts: 67
Joined: 2011-01-24
the empty mail was genereat after the function

// Required by Add-in Express - do not modify
// the methods within this region

public override System.ComponentModel.IContainer GetContainer()
{
if (components == null)
components = new System.ComponentModel.Container();
return components;
}
Posted 29 Mar, 2018 05:05:22 Top
Andrei Smolin


Add-in Express team


Posts: 18830
Joined: 2006-05-11
It doesn't relate to the issue. Add-in Express calls this method whenever looking for Add-in Express components; say, when Office calls a Ribbon callback this method is called to find the component processing that callback.


Andrei Smolin
Add-in Express Team Leader
Posted 29 Mar, 2018 05:42:14 Top
Thomas Lauer




Posts: 67
Joined: 2011-01-24
Do you have an idea how to debug this?
Posted 29 Mar, 2018 07:33:50 Top
Andrei Smolin


Add-in Express team


Posts: 18830
Joined: 2006-05-11
You should set breakpoints on your code that calls one of these methods: 1) the Save(), Move() or Copy() method on an Outlook item, 2) the Add method on the Outlook.Items collection, 3) CreateItem() on an Outlook.Application object.


Andrei Smolin
Add-in Express Team Leader
Posted 29 Mar, 2018 08:02:58 Top