Results 1 to 4 of 4

Thread: asp-db autoemail

  1. #1
    Join Date
    Jul 2004
    Location
    Philippines
    Posts
    2

    Unhappy asp-db autoemail

    does anyone know how to create an auto-email function in an asp-db?

    thanks.

  2. #2
    Join Date
    Oct 2002
    Posts
    933
    define your auto email format. also, classic or ASP-db.Net (Tornado). Tornado can send email after a record is added to DB.

    FK

  3. #3
    Join Date
    Aug 2004
    Location
    Peshawar Pakistan
    Posts
    4

    Send mail

    you have many controls to send auto mail like CDONTS and CDO. i am going to tell you the CDO method because of relaiblity.
    --------------------------------------
    Set myMail=CreateObject("CDO.Message")
    myMail.Subject=" Subject Here "
    myMail.From=" Email address of sender "
    myMail.To=" Email address of reciver "
    myMail.HTMLBody=" Mail Body Text "
    myMail.Send
    Set myMail=Nothing
    --------------------------------------

    Imran Khan

  4. #4
    Join Date
    Oct 2002
    Posts
    933
    ASP-db uses CDONTS and has the format ->

    Obj.dbMail = "From | To | SQLto| DSNto | Cc | Bcc | Subject | Body | Encoding | Format | priority | Base | Loc | attach | NameValue | SMTPserver | BatchSize | IgnoreError | Visual | TestRun | Lapse| trigger"

    Beside the standard parameters, ASP-db streamline and applies email to other operations like "Edit Add, DB mass mail etc..." such that it becomes automatic.

    FK

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •