Field |
Field Type |
Null |
Notes |
Description |
EMAILADDRESS |
UDT_EMAILADDRESS |
|
Default = '' |
Email Address of the Contact Record |
MESSAGETYPECODE |
tinyint |
|
Default = 1 |
Message Type |
MESSAGETYPE |
nvarchar(18) (Computed) |
 |
CASE [MESSAGETYPECODE] WHEN 1 THEN N'Email' WHEN 2 THEN N'Personal Page Post' WHEN 3 THEN N'Text' WHEN 4 THEN N'Letter' WHEN 5 THEN N'Facebook' WHEN 6 THEN N'Twitter' END |
Provides a translation for the 'MESSAGETYPECODE' field. |
DATESENT |
datetime |
|
|
Message sent date |
DATEADDED |
datetime |
|
Default = getdate() |
Indicates the date this record was added. |
DATECHANGED |
datetime |
|
Default = getdate() |
Indicates the date this record was last changed. |
TS |
timestamp |
|
|
Timestamp. |
TSLONG |
bigint (Computed) |
 |
CONVERT(bigint, TS) |
Numeric representation of the timestamp. |
PAGEVISITS |
int |
|
Default = 0 |
How many times email recipient visited senders personal/team page |