Hello,
since we upgraded the domino server from 8.5.3 to 9.0.1 we have a special effect, sending email with our contact application.
At the end of every email, which contains attachments we have the text “HTTP: Missing resource string”. This has nothing to do with http task. I can stop the http task at the server and the message appears as well.The effect only happens if we send the email by a server process. If I call the same functionality at a notes client (8.5.3 or 9.0.1) the effect does not appear.
Here is the code fragment what the email send process is doing:
'copy the draft of th serial email to a temporary document
Set docTemp = me.docCurrent.Copytodatabase(dbCurrent)
Call Me.setBasicMailFields (docTemp)
'fill the addressee
docTemp.SendTo = sMailAddress
docTemp.EnterSendTo = docTemp.sendTo
docTemp.Recipients = docTemp.sendTo
docTemp.INetSendTo = docTemp.sendTo
docTemp.Principal = me.sPrincipal
docTemp.From = me.docMailTask.From
docTemp.Logo = sLogo
docTemp.User = me.sPrincipal
docTemp.Form = “Memo”
'replace some placeholder (personal salutation etc.)
Call replaceRTVariables(docTemp)
Call docTemp.ConvertToMIME(CONVERT_RT_TO_PLAINTEXT_AND_HTML)
Call docTemp.Save(True, False)
'copy the temporary document to the MAIL.BOX
Call docTemp.Copytodatabase(dbMailbox)
'kill the temporary document
Call docTemp.Remove(true)
I suppose the reason for the mistake is the the call to the function ConvertToMIME(CONVERT_RT_TO_PLAINTEXT_AND_HTML). But the functionality I described worked without any problems since DOMINO 6.5.