Announcement

Collapse
No announcement yet.

Email Parser - Aweber

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Email Parser - Aweber

    Hi everyone,
    Can anyone point me in the right direction and are able to share the rule set with me?
    I just want to capture the customers email and name so when they place an order they get a opt in email to sign up to our 'newsletter' if they wish.

    Regards
    Paul
    "If my answers frighten you then you should cease asking scary questions"

    #2
    http://www.aweber.com/faq/ ?

    Comment


      #3
      Originally posted by gabrielcrowe
      Tried that, first place i looked
      "If my answers frighten you then you should cease asking scary questions"

      Comment


        #4
        sorry, lol, thought you might have missed tfm.

        are the rules complex to make? how does it work?

        Comment


          #5
          This is where im stuck.
          Heres a snippet from the worldpay parser

          Trigger Rule:
          Code:
          From:\s+orders@[^ ]*worldpay.com\b
          Match: "Body or Head"

          Rule 1:
          Code:
          Shopper's Name:\s+(.*)\s*\n
          Match: "Body or Head" - Store in: "what ever variable you have made e.g. NAME"

          Rule 2:
          Code:
          Shopper's Email:\s+([^ @]+@\S+)
          Match: "Body or Head" - Store in: "what ever variable you have made e.g. Email"

          You can create as many rules as you like to grab information from any email that is sent to your customer.
          Now its the code bit that stumps me, and i have tried searching the web for references; but no joy
          "If my answers frighten you then you should cease asking scary questions"

          Comment


            #6
            These look like regular expressions. They match patterns within text. They're used in many programming languages. There will be many tutorials on them if you google for regular expression tutorial.
            Norman - www.drillpine.biz
            Edinburgh, U K / Bitez, Turkey

            Comment


              #7
              FANTASTIC!
              thanks Norman for the push in the right direction.
              "If my answers frighten you then you should cease asking scary questions"

              Comment

              Working...
              X