Author |
|
Guido Adam Guest Group
Joined: 10 November 2003
Online Status: Online Posts: 262
|
Posted: 11 November 2004 at 6:48am | IP Logged
|
|
|
Maybe it's just me, but i wasn't able to find a FROM NAME property. Is there a way...? Thanks
|
Back to Top |
|
|
Alex AfterLogic Support
Joined: 19 November 2003
Online Status: Offline Posts: 2206
|
Posted: 11 November 2004 at 8:06am | IP Logged
|
|
|
There is FromFriendlyName property of Message object which returns you FROM NAME.
This property is read-only, however. To put a friendly name in an address, just use the code like below:
strFromName = "MailBee Support"
strFromEmail = "mailbee@iforum.com"
Message.FromAddr = strFromName & "<" & strEmail & ">"
Regards,
Alex
|
Back to Top |
|
|