The following 'hotfix' solves the above issue in the 'Newsletter'-agent and should be part of any future releases;-)
Function CreateMemo (profile As NotesDocument, email As String, subject As String, content As String)
<br/>
Dim mailbox As New NotesDatabase("",profile.GetItemValue("MailboxFilename")(0))<br/>
Set mail = mailbox.CreateDocument<br/>
Call mail.ReplaceItemValue("Form","Memo")<br/>
Call mail.ReplaceItemValue("Subject", subject)<br/>
' The line below added to domBul 1.0 code fixes a problem, that newsletters inbound the draft folder of R5 clients <br/>
' Fix provided by Jan Stengel, HP-JES on September 20, 2004 <br/>
mail.PostedDate=Now<br/>
Call mail.ReplaceItemValue("From", profile.getItemValue("EmailFrom")(0))<br/>
Call mail.ReplaceItemValue("ReplyTo", profile.getItemValue("EmailFrom")(0))<br/>
Call mail.ReplaceItemValue("Recipients", email)<br/>
Call mail.ReplaceItemValue("SendTo",email)<br/>
Set rtitem = New NotesRichTextItem ( mail, "Body" )<br/>
Call rtitem .AppendText(profile.GetItemValue("NewsletterHeader")(0))<br/>
Call rtitem.AddNewLine( 1 )<br/>
Call rtitem .AppendText(content)<br/>
Call rtitem.AddNewLine( 3 )<br/>
Call rtitem .AppendText(profile.GetItemValue("NewsletterFooter")(0))<br/>
Call mail.Save(False,False)<br/>
<br/>
End Function