Send To Address

Discussion in 'Rebol' started by kevy, Nov 6, 2011.

  1. kevy

    kevy New Member

    I'm trying to send an e-mail out to customers as they sign up. I can trap their e-mail address into the DB, but can't use a variable to specify the "to" address with send. It requires a formatted address - i.e. name@company.dom

    Is there a way to send to an address that a customer has filled in on a form or from the DB?

    Thx

    K
  2. kevy

    kevy New Member

    Found it. D'oh!

    send probe to-email to_address "message data"

    Where to_address is the var holding the email address.
    This converts it to the correct type (email) for the send function.

    K

Share This Page