Advertisement
Guest User

Untitled

a guest
Sep 15th, 2017
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Sub SendProblemNotification (memodoc As NotesDocument, db As NotesDatabase, errorcode As String)
  2.     Dim memod As NotesDocument 
  3.     Set memod=Db.CreateDocument
  4.     memod.Form="Memo"
  5.     memod.SendTo = "Администратор/Lotus/Domino" 'TODO how to insert address'
  6.     memod.Subject =  "Проблемный документ в Адаптере МЭДО: " & memodoc.Log_Numbers(0) & " (проблема: " & errorcode & ")"
  7.     Call memod.Send(False
  8. End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement