Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie

My forms wont send

Options
  • 22-09-2003 4:04pm
    #1
    Banned (with Prison Access) Posts: 13,018 ✭✭✭✭


    When i try to send off a form i get the following message

    Form could not be processed due to the following errors:

    Email send failed: This evaluation component has expired

    i dont get the last part of it
    error checkinh has expired!!

    i got the form from here

    http://www.brainjar.com/asp/formmail/

    i changed to the details to suit my needs but it wont work

    can anybody help me here??


Comments

  • Registered Users Posts: 1,481 ✭✭✭satchmo


    I'd say the mail is being parsed from the form just fine, but it looks like whatever component you're using to actually send the mail was only a time-limited shareware type thing. Try a different one.


  • Banned (with Prison Access) Posts: 13,018 ✭✭✭✭jank


    the form i got was from a link from hosting365.ie who are my hosts

    i dont think its a sharware or anything like that
    i looks starightforward but its not happening for me

    the file i use to send proccess the form is here


  • Registered Users Posts: 1,481 ✭✭✭satchmo


    Like I said, it's not the form that's the problem, but ASPmail. Try using a different mailComp, like JMail. Ask your hosts too, since you got the form off them (and it's probably their mail component that's the problem).

    But hey, I don't even know ASP so I could well be wrong :p


  • Closed Accounts Posts: 94 ✭✭boo-boo


    As far as I can tell its not the asp but the object that the asp
    code is creating thats causing the error,

    eg its the Mailer object here
    Server.CreateObject("SMTPsvg.Mailer")
    thats causing the error - you need to contact the hosting provider
    to sort this out.


  • Registered Users Posts: 629 ✭✭✭str8_away


    You have 3 places that could print out
    Email send failed: This evaluation component has expired
    line 441 with mailComp = "CDOSYS"
    Server.CreateObject("CDO.Message")
    line 464 with mailComp = "JMail"
    Server.CreateObject("JMail.SMTPMail")
    line 483 with mailComp = "ASPMail"
    Server.CreateObject("SMTPsvg.Mailer")

    Because on line 21 you set mailComp = "ASPMail" so I would say
    SMTPsvg is out of date.
    As far as I can tell SMTPsvg.dll belongs to ASPMail and it is a pay component.
    http://www.serverobjects.com/products.htm#aspmail

    Try
    mailComp = "CDONTS"
    mailComp = "CDOSYS"
    mailComp = "JMail"

    or do as boo-boo said contact you host provider


  • Advertisement
Advertisement