This commit is contained in:
Jonathan Jenne
2023-11-29 10:02:53 +01:00
parent 1e2083950f
commit c964b97e55
4 changed files with 34 additions and 1 deletions

View File

@@ -137,6 +137,7 @@
<DependentUpon>Settings.settings</DependentUpon>
<DesignTimeSharedInput>True</DesignTimeSharedInput>
</Compile>
<Compile Include="Services\EmailService.vb" />
<Compile Include="Strings\Email.en.Designer.vb">
<DependentUpon>Email.en.resx</DependentUpon>
<AutoGen>True</AutoGen>

View File

@@ -0,0 +1,19 @@
Imports DigitalData.Modules.Base
Imports DigitalData.Modules.Logging
Public Class EmailService
Inherits BaseClass
Public Sub New(pState As State)
MyBase.New(pState.LogConfig)
End Sub
Public Function SendSignedEmail(pReceiverId As Integer, pEnvelopeId As Integer)
Dim oEnvelope =
End Function
End Class