ASP Error message: The "SendUsing" configuration value is invalid.

2 replies
I am trying to run this script on a free asp host:

<%
Set myMail=CreateObject("CDO.Message")
myMail.Subject="Sending email with CDO"
myMail.From= "myfirstmailbox@yahoo.com"
myMail.To= "mysecondmailbox@yahoo.com"
myMail.TextBody="This is a message."
myMail.Send
set myMail=nothing
%>


and always get this message:

CDO.Message.1error '80040220'
The "SendUsing" configuration value is invalid.



Any idea what it means and how it could be fixed?
#asp #configuration #error #invalid #message #sendusing
  • Profile picture of the author Sleaklight
    If you simply typed the last sentece of your error message you could find your solution on the first result of google search: The "SendUsing" configuration value is invalid.
    {{ DiscussionBoard.errors[351092].message }}
    • Originally Posted by Sleaklight View Post

      If you simply typed the last sentece of your error message you could find your solution on the first result of google search: The "SendUsing" configuration value is invalid.
      Well, before starting this thread I DID do some research
      on it in google and yahoo, but the problem was that none
      of the numerous ways of help presented there worked for
      me. The reason was probably because my case is
      somewhat different from the cases discussed there.

      How it is so different is still a big mystery to me! I am not
      doing anything extraordinary here - I just want to have a
      script that, while being placed on a free remote server (a
      host), would periodically copy some web pages (this part I
      have already solved in ASP - I already have a script that
      can open web pages by their URL, except I don't know yet
      how to make it work periodically) and then e-mail those
      pages' HTML code to my mail box (this is the part that I
      still can't solve). That's why I decided to start this thread
      with this particular title, in which I described my particular
      case.
      {{ DiscussionBoard.errors[352076].message }}

Trending Topics