Hi Robin,
Thank you for your reply.
I do have the DTM notification PowerTool. Below is the script I have as a test but it keeps giving an error. If i don't use a template it completes and emails successfully:
Dim sSubject, sBody, sTo as String
sSubject = "test1"
if dtm.source("POSTAL_CODE") <> "" then
sBody = NotificationTool.CreateBodyFromTemplate(args.StagingDestination, "C:\Program Files\Imanami\DTM3\newuser.xml")
sTo = "Mo.Sab@LAB.LOCAL"
NotificationTool.SimpleSendHtmlNotification(sTo, sSubject, sBody)
end if