A component designed to send emails.
The components uses system settings listed under the SMTP heading.
SMTPRelay is the most important, and is the address of the mail server.
SMTPLibrary lets you choose between
Go to Admin > Local Settings in your system for a full list of settings.
Statement to extract attachments in e-mails, each row corresponds to a file and each file will be attached to all e-mails. In order to use attachements you need to give the Internet User (IUSR_) permission to read, write and execute in the WINDOWS/TEMP directory.
You can either attach the result of another menu item or attach a file directly (or both, if you use more than one table in the resultset). Do not attach menu items that generate html, like grid.aspx.
Statement to extract e-mail information, each row corresponds to an e-mail.
When sending html e-mails the component will automatically insert <html>, <head> and <body> tags.
Statement that is executed after each e-mail to confirm that the email was sent (no resultset is expected), this database call is only executed if the column 'emailid' is returned in SQL (database call 2).
Statement to extract confimation message after e-mail send out.
Allows you to validate the SQL parameters before any other SQL is run in the component. This call is only made if the SQL is a stored procedure and Validate parameters is checked.
Use this call to restrict which entries a user is allowed to view and edit, and to log which entries a user views.
Access to a menu item is normally controlled through functions and roles alone but some entities need more fine grained control. For example, a user may have access to the View Member menu item for normal members but not for members with a protected identity.
The menu items a user visits are always logged (in ADMINLogMenuItem) but for sensitive data you may need to log exactly what entries are viewed. Do the logging in this call as the common ways of viewing data (grid and InfoSQL) are not allowed to modify the database.
If you bind a scalar function instead of a stored procedure to this call then its name must end with '_GrantAccess'.