Profiler Object:Column-Based Email Statistics
These statistics are only accumulated for DataTypeEmail columns. See ProfilerDataType Enumerations for details. They should only be retrieved after calling the ProfileData function.
GetColumnEmailSyntaxCount
This function returns a column's number of records that contain emails with invalid syntax.
This function takes one parameter.
Parameters
| Name | Data Type | Description |
|---|---|---|
| ColumnName | String | Column Name to get number of records contains emails with invalid syntax. |
| Syntax | profiler->GetColumnEmailSyntaxCount(columnNameStr); |
|---|---|
| C | integer = mdProfilerGetColumnEmailSyntax(profiler,columnNameStr); |
| .Net | integer = profiler.GetColumnEmailSyntaxCount(columnNameStr); |
GetColumnEmailMobileDomainCount
This function returns a column's number of records that contain emails with mobile domains.
This function takes one parameter.
Parameters
| Name | Data Type | Description |
|---|---|---|
| ColumnName | String | Column Name to get number of records contains emails with mobile domains. |
| Syntax | profiler->GetColumnEmailMobleDomainCount(columnNameStr); |
|---|---|
| C | integer = mdProfilerGetColumEmailMobileDomainCount(profiler,columnNameStr); |
| .Net | integer = profiler.GetColumnEmailMobileDomainCount(columnNameStr); |
GetColumnEmailMisspelledDomainCount
This function returns a column's number of records that contain emails with misspelled domains. Misspellings are detected on minor typos on the top 100 most popular e-mail domain names.
This function takes one parameter.
Parameters
| Name | Data Type | Description |
|---|---|---|
| ColumnName | String | Column Name to get number of records contains emails with misspelled domains. |
| Syntax | profiler->GetColumnEmailMisspelledDomainCount(columnNameStr); |
|---|---|
| C | integer = mdProfilerGetColumEmailMisspelledDomainCount(profiler,columnNameStr); |
| .Net | integer = profiler.GetColumnEmailMisspelledDomainCount(columnNameStr); |
GetColumnEmailSpamtrapDomainCount
This function returns a column's number of records that contain emails with spamtrap domains. Spamtraps are domains specifically set up to catch spammers. E-mailing to a spamtrap domain is likely to get the sender put onto e-mail blacklists.
This function takes one parameter.
Parameters
| Name | Data Type | Description |
|---|---|---|
| ColumnName | String | Column Name to get number of records contains emails with spamtrap domains. |
| Syntax | profiler->GetColumnEmailSpamtrapDomainCount(columnNameStr); |
|---|---|
| C | integer = mdProfilerGetColumEmailSpamtrapDomainCount(profiler,columnNameStr); |
| .Net | integer = profiler.GetColumnEmailSpamtrapDomainCount(columnNameStr); |
GetColumnEmailDisposableDomainCount
This function returns a column's number of records that contain emails with disposable domains. Disposable domains are domains that let a user create an e-mail address on-the-fly, receive a specific e-mail, and then never use the address again. Users often use them when filling out web forms to avoid receiving spam from the web site.
This function takes one parameter.
Parameters
| Name | Data Type | Description |
|---|---|---|
| ColumnName | String | Column Name to get number of records contains emails with disposable domains. |
| Syntax | profiler->GetColumnEmailDisposableDomainCount(columnNameStr); |
|---|---|
| C | integer = mdProfilerGetColumEmailDisposableDomainCount(profiler,columnNameStr); |
| .Net | integer = profiler.GetColumnEmailDisposableDomainCount(columnNameStr); |