I have a web application that I added a web reference to Saturn Webmail. I try to build the project but I get compile errors in Reference.vb of the newly added web reference.
Example of one of the errors: Error 12 Keyword is not valid as an identifier.
Public Function sendEmail2(ByVal from As String, ByVal [to] As String, ByVal body As String, ByVal subject As String) As Boolean
Dim results() As Object = Me.Invoke("sendEmail2", New Object() {from, [to], body, subject})
Return CType(results(0),Boolean)
End Function
The keyword "from" is the issue.
Anyways I'm not sure how to handle this as this is auto generated code. Any help would be appreciated.
Thanks,
Example of one of the errors: Error 12 Keyword is not valid as an identifier.
Public Function sendEmail2(ByVal from As String, ByVal [to] As String, ByVal body As String, ByVal subject As String) As Boolean
Dim results() As Object = Me.Invoke("sendEmail2", New Object() {from, [to], body, subject})
Return CType(results(0),Boolean)
End Function
The keyword "from" is the issue.
Anyways I'm not sure how to handle this as this is auto generated code. Any help would be appreciated.
Thanks,