ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / Managing databases / HFSQL / HFSQL Client/Server functions
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
Deletes the recipients of an email notification. This notification is sent by the HFSQL server when a problem occurs.
Example
ctCSConnection is Connection
ctCSConnection.Provider = hAccessHFClientServer
ctCSConnection.User = "admin"
ctCSConnection.Password = ""
ctCSConnection.Server = "test:4900"
ctCSConnection.OpenConnection()
 
ctCSConnection.NotifConfigure(hNotifEmail, "FLOWER:25", "test.doc", "doc", "doc@pcsoft.com", False)
ctCSConnection.NotifAddEmailRecipient("test.app@gmail.com", hNotifWarning)
...
ctCSConnection.NotifDeleteEmailRecipient("doc@pcsoft.com")
Syntax
<Result> = <Connection>.NotifDeleteEmailRecipient(<Recipient>)
<Result>: Boolean
  • True if the deletion was performed.
  • False otherwise. HErrorInfo is used to identify the error.
<Connection>: Connection variable
Name of the Connection variable that describes the connection to use.
<Recipient>: Character string
Email address of the recipient to delete.
Component: wd290hf.dll
Minimum version required
  • Version 25
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 07/06/2023

Send a report | Local help