Forum Discussion
royd
6 years agoRegular Contributor
Hi Robert,
Ran the test as suggested -
It steps through till -
mConfig.Fields.Item(schema + "sendusing") = 2;
Then jumps to:
Log.Error("E-mail cannot be sent", exception.description);
Thanks.
tristaanogre
6 years agoEsteemed Contributor
OK... did a quick experiement...
So, everywhere you have something of the pattern of
mConfig.Fields.Item(schema + "sendusing")
add .Value at the end. So, you should end up with
mConfig.Fields.Item(schema + "sendusing").Value = 2
and so on.