Jim Thorpe![]() Member Posts: 20 Joined: 1/24/2009 Location: Suwanee, GA ![]() | Buffalo, A possible resolution to the issue you just described would be to change the following logic to return "True" instead of "False" when an exception is encountered sending an email. This way OP will think the email was sent successfully regardless if there was a problem or not. This may be a better alternative than stopping the OP process due to an email failure. Try oEmail.Send(oMessage) Catch ex As Exception MsgBox(ex.Message) Return True <<<< Change to True End Try Without seeing the calling code, I can't tell for sure this is will resolve the issue, so it would require testing to confirm. Jim Thorpe |