Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Added step to: From Administration menu, choose System Settings.

...

  1. Access the Master module.

  2. Click From Administration menu, choose System Settings.

  3. Click the E-Mail tab.

  4. Check the Enable box.

  5. Specify an SMTP Server address. For example: mail.google.com

  6. Specify an SMTP Port value. For example: 25

  7. Optional: Specify the SMTP User & Password values if required by your mail server.

  8. 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
titleSQL to Enable E-Mails from Scheduler
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;

...