Announcement

Collapse
No announcement yet.

Simple Send Email via script returns error

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Simple Send Email via script returns error

    First, The HS3 documentation for hs.SendEmail describes the parameter "Attachment" as optional. This is not true; omitting this parameter produces the error:
    Exception has been thrown by the target of an invocation.Overload resolution failed because no accessible 'SendEmail' accepts this number of arguments.

    No matter.
    I'm having a problem with this simple script: (Email address and domain altered to protect the innocent)

    Sub Main(Parm As Object)
    hs.SendEmail("myemail@mydomain.ca","homeseeremail@mydomail.c a","","","Mail Test","This is a simple HS3 Mail Test","")
    End Sub

    Produces the Error:
    Exception sending email via smtp.mydomain.ca (To:myemail@mydomain.ca, cc:, bcc:, Sub:Mail Test, Attach: = command unrecognized

    I believe my email settings in HS3 are correctly configured.
    Anyone have any ideas?
    Real courage is not securing your Wi-Fi network.

    #2
    I just tried your command line using my email settings in the HS3 immediate script window and works fine for me so you got the string right...

    Comment


      #3
      Thanks for eliminating the scripting function for me. It was the server settings. Port 465, not 25 (default) and SSL was necessary.
      Real courage is not securing your Wi-Fi network.

      Comment

      Working...
      X