Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Mail.From = fn
Mail.FromName = email
Mail.Host = "mail.gcol.com"
Mail.Subject = "Documents and details for -" &tf
Mail.IsHTML = True
Mail.Body = "<HTML><BODY><CENTER>" & mailbody & "</CENTER></BODY></HTML>"
Mail.AddAddress "my@mycompany.com","Manager"
' Handle attached file via Upload.Files collection.
' Check if a file was indeed uploaded
If Not Upload.Files("Attachment1") Is Nothing Then
Mail.AddAttachment Upload.Files("Attachment1").Path
End If
If Not Upload.Files("Attachment2") Is Nothing Then
Mail.AddAttachment Upload.Files("Attachment2").Path
End If
If Not Upload.Files("Attachment3") Is Nothing Then
Mail.AddAttachment Upload.Files("Attachment3").Path
End If
' We are done. Send message
Mail.Send ' <<<<<<<<<Error Occurs here....