Compare commits
2 Commits
92b5a72537
...
861f012593
| Author | SHA1 | Date | |
|---|---|---|---|
| 861f012593 | |||
| cd8761c3fe |
@ -16,6 +16,12 @@ Public Class Config
|
||||
''' </summary>
|
||||
Public Property RejectionTemplateId As Integer = 0
|
||||
|
||||
''' <summary>
|
||||
''' GUID des EMail Templates das bei Info-Mails verwendet wird.
|
||||
''' Siehe Tabelle DD_ECM.dbo.TBDD_EMAIL_TEMPLATE
|
||||
''' </summary>
|
||||
Public Property InfoTemplateId As Integer = 0
|
||||
|
||||
Public Property EmailTestReceiver As String = ""
|
||||
Public Property EmailTestHTML As String = ""
|
||||
End Class
|
||||
|
||||
@ -13,7 +13,7 @@ Imports System.Runtime.InteropServices
|
||||
<Assembly: AssemblyCompany("")>
|
||||
<Assembly: AssemblyProduct("SERV_EMAIL")>
|
||||
<Assembly: AssemblyCopyright("Copyright © 2024")>
|
||||
<Assembly: AssemblyTrademark("2.14.0.0")>
|
||||
<Assembly: AssemblyTrademark("2.15.0.0")>
|
||||
|
||||
<Assembly: ComVisible(False)>
|
||||
|
||||
@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("2.14.0.0")>
|
||||
<Assembly: AssemblyVersion("2.15.0.0")>
|
||||
<Assembly: AssemblyFileVersion("2.10.0.0")>
|
||||
|
||||
@ -56,7 +56,7 @@ Public Class MyService
|
||||
|
||||
EmailWorker = New clsWorkEmail(LogConfig, Config.ConnectionString, DBConfig.WindreamConnectionString,
|
||||
Config.UseWindream, Config.EmailAccountId, Config.EmailTitlePrefix,
|
||||
Config.RejectionTemplateId)
|
||||
Config.RejectionTemplateId, Config.InfoTemplateId)
|
||||
Logger.Debug("Module Workmail initialized")
|
||||
|
||||
If Database.DBInitialized = False Then
|
||||
@ -104,7 +104,8 @@ Public Class MyService
|
||||
Config.EmailAccountId,
|
||||
Config.EmailSenderLimitation,
|
||||
Config.EmailTitlePrefix,
|
||||
Config.RejectionTemplateId)
|
||||
Config.RejectionTemplateId,
|
||||
Config.InfoTemplateId)
|
||||
oWorker.Start_WorkingProfiles()
|
||||
Catch ex As Exception
|
||||
Logger.Error(ex)
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user