Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
*** First see if the sender name actually IS an e-mail address
IF '@' $ loItem.SenderName
m.lcSenderEm2 = loItem.SenderName
else
if empty(loItem.To)
* don't reply - this is just a draft
m.lcSenderEm2 = "Draft"
else
loReply = loItem.Reply()
loRecip = loReply.Recipients[ 1 ]
m.lcSenderEm2 = IIF( NOT EMPTY( loRecip.Address ), loRecip.Address, loRecip.Name )
endif
ENDIF