problem with aspSmartMail

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • X-Okaz.com

    problem with aspSmartMail

    Usually, I use aspSmartMail without any problem, but when trying to send a
    html message to my list of subscribers, I got the following error for all of
    them excepted for my own adress email (and my message appears correctly in
    html format)
    aspSmartMail.Se ndMail : Error 40 error '80040028'

    Error when check Recipient address : 550 not local host aol.com, not a
    gateway

    Does someone knows where is the problem? Thanks

    Actea



    My code is very simple and copied from their samples:

    ----------------

    dim mySmartMail
    set mySmartMail = Server.CreateOb ject("aspSmartM ail.SmartMail")

    mySmartMail.Con tentType = "text/html"

    mySmartMail.Ser ver = "mail.actea-productions.com "

    mySmartMail.Sen derName = "Actea Productions"
    mySmartMail.Sen derAddress = "actea@acte a-productions.com "

    mySmartMail.Rec ipients.Add (rsEmails.Field s.Item("email") .Value),""
    mySmartMail.Sub ject = "Newsletter n°1"
    MySmartMail.Bod y = "<table border=0 align=center cellpadding=3
    cellspacing= 0 ><tr><td> ...........MESS AGE .......... </tr><br>
    </table><br><br>< br>Pour vous desabonner de notre newsletter allez sur cette
    page http://reality-chaud.com/retirerEmail.asp <br>"

    mySmartMail.Sen dMail
    set mySmartMail = nothing


Working...