RendertoRTItem and iNotes

I am having a problem when sending a webform to a user by email. The form uses fields with radio buttons for the webuser to fill out. When received in the Notes clients these fields are still visible as Notes fields (not rendered although the script tells it to). When received in iNotes (Domino Web Access) the field does not show at all!

If the email address it outside of the Notes domain the field is rendered to text and visible in both Notes client and iNotes.

Ofcourse the users of this application are internal users which use iNotes…

Set mailDoc = db.CreateDocument

Set rtitem = New NotesRichTextItem( mailDoc, “Body” )

If doc.RenderToRTItem( rtitem ) Then

’ Set the field values for the e-mail

mailDoc.Form = “Memo”

mailDoc.SendTo = doc.Mail_Recipient

mailDoc.CopyTo = doc.Mail_CopyTo

mailDoc.BlindCopyTo = doc.Mail_BlindCopyTo

mailDoc.Subject = doc.FormTitle

Call mailDoc.Send( True )

Else

' An error occurred during rendering to Rich Text!		

End If

Thanks for any ideas.