can someone maybe explain to me how the reply to property works, i want to give it an email address like this "message.replyto("ReplyAdd")", but it doesnt seemd to work. and the replytolist in the code also dont work i get this error when i put in breakpoint on it "count = (count) threw an exception of type system.typeloadexception replytolist"
Dim client1 As New SmtpClient("smtp.address")
Dim smtpuserinfo1 As New NetworkCredential("email address", "password")
client1.Credentials = smtpuserinfo1
Dim toAddr1 As New MailAddress("email address")
Dim fromAddr1 As New MailAddress("email address")
Dim ReplyAdd As New MailAddress("email address")
Dim message1 As New MailMessage(fromAddr1, toAddr1)
message1.Subject = "abc"
message1.Body = "abc"
message1.Body &= vbCrLf
message1.Body &= vbCrLf
message1.Body &= "abc"
message1.Body &= vbCrLf
message1.Body &= vbCrLf
message1.Body &= "abc"
'message1.ReplyToList.Add(New MailAddress("email address"))
'Attachement
Dim attachment As Attachment = New Attachment(Session("filePath2") & "Letter(" & Session("ClientID") & ").pdf")
message1.Attachments.Add(attachment)
Try
client1.Send(message1)
Catch ex As Exception
End Try