SiFitz, Try this one:
'========================
'Private Sub AddReplyRecip(objMsg As MailItem, strName As String)
' Dim colReplyRecips As Recipients
' Dim objReplyRecip As Recipient
' Dim strPrompt As String
' Dim intRes As Integer
' Dim strRecipName As String
'
' Set colReplyRecips = objMsg.ReplyRecipients
' Set objReplyRecip = colReplyRecips.Add(strName)
' objReplyRecip.Resolve
' If Not objReplyRecip.Resolved Then
' objReplyRecip.Delete
' strPrompt = strName & " could not be resolved as " & _
' "a valid Outlook address. Do you want to try " & _
' "a different name?"
intRes = MsgBox(strPrompt, _
' vbYesNo + vbQuestion + vbDefaultButton1, _
' "Try Again?"

' If intRes = vbYes Then
' strRecipName = GetReplyAddress()
' If strRecipName <> "" Then
' Call AddReplyRecip(objMsg, strRecipName)
' End If
' End If
' End If
' Set colReplyRecips = Nothing
' Set objReplyRecip = Nothing
'End Sub
'========================
Sandy