...
- Access the Master module.
- Click From Administration menu, choose System Settings.
- Click the E-Mail tab.
- Check the Enable box.
- Specify an SMTP Server address. For example: mail.google.com
- Specify an SMTP Port value. For example: 25
- Optional: Specify the SMTP User & Password values if required by your mail server.
- Click Save.
Known Bug: When saving, you may receive an error message to set the Last Item Number. If so, click the Item Master tab, specify a value of "0" in the Last Item Number field. Then click Save.
...
Info | ||
---|---|---|
| ||
SET IDENTITY_INSERT [dbo].[Schedule] ON; BEGIN TRANSACTION; INSERT INTO [dbo].[Schedule] ([ScheduleID], [TaskTypeID], [ScheduleDesc], [ExecuteTime], [IntervalTypeID], [IntervalUnits], [IsRecurring], [IsDeleted], [IsDisabled], [RowCreateDate], [RowModifyDate], [RowVersion], [TaskID]) SELECT 1, 1, N'Send E-Mail', '20110922 10:42:00.000', 1, 1, 1, 0, 1, '20110922 09:28:12.900', '20130321 13:44:56.490', 18, NULL COMMIT; RAISERROR (N'[dbo].[Schedule]: Insert Batch: 1.....Done!', 10, 1) WITH NOWAIT; GO SET IDENTITY_INSERT [dbo].[Schedule] OFF; |
...