|
|
|
|
HNotifListEmailRecipient (Function) In french: HNotifListeDestinataireEmail
Available only with this kind of connection
Returns the list of recipients for a notification by email. This notification is sent by the HFSQL server when a problem occurs.
ctCSConnection is Connection ctCSConnection.Provider = hAccessHFClientServer ctCSConnection.User = "admin" ctCSConnection.Password = "" ctCSConnection.Server = "test:4900" HOpenConnection(ctCSConnection) ListEmailRecip is string ListEmailRecip = HNotifListEmailRecipient(ctCSConnection) FOR EACH STRING ARecipient OF ListEmailRecip SEPARATED BY CR sRecipient is string = ExtractString(ARecipient, 1, TAB) Notif is int = ExtractString(ARecipient, 2, TAB) NotifLevel is string SWITCH Notif CASE hNotifError: NotifLevel = "Minimum level: Errors" CASE hNotifWarning: NotifLevel = "Minimum level: Warning" CASE hNotifCritical: NotifLevel = "Minimum level: Critical" END Trace(sRecipient + TAB + NotifLevel) END
Syntax
<Result> = HNotifListEmailRecipient(<Connection>)
<Result>: Character string List of recipients for the notification by email. The list has the following format:
<Email Address of Recipient> + TAB + <Notification Level> + CR + ... where: - <Email Address of Recipient>: character string corresponding to the email address of the recipient.
- <Notification Level>: integer constant corresponding the the minimum severity level of the problem from which a notification is sent. The available values are as follows:
| | hNotifCritical | The notifications will be sent from the critical level (for the critical and error problems). | hNotifError | The notifications will be sent for the error problems only. | hNotifWarning | The notifications will be sent from the warning level (for the warning, critical and error problems). |
<Connection>: Character string or Connection variable Connection to use. This connection corresponds to:
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|