| View previous topic :: View next topic |
| Author |
Message |
vadimstr
Joined: 07 Dec 2005 Posts: 1 Location: Australia
|
Posted: Mon Apr 17, 2006 6:42 am Post subject: Extracting name and email fields |
|
|
I have another question.
At this moment response Mailer will extract information from the body as follow:
Name: Paul Smith
Email: paulsmith@msitth.com
Will it extract if information presented:
Paul Smith
paulsmith@msitth.com
I am bit lost with extracting and filtering.
I can extract, but I can't send.
So, please start one step in time
Thank you |
|
| Back to top |
|
 |
devicode Site Admin
Joined: 05 Mar 2005 Posts: 249
|
Posted: Sat Apr 22, 2006 1:28 pm Post subject: |
|
|
Since your email only contains 2 lines. Where the first line is the person's name and the send is their email address we can setup the extractor as follows.
- Add a new Email Data Extractor:
Field Name: EmailBody
Email Field: Select Message Body
Start of Data Field
From: Select Specific text
Text: $
End of Data Field
From: Select Specific text
Text: /z
- Add a new Modify Extracted Data:
New Field Name: EmailName
Start Value: [[EmailBody]]
Function: GetWord
Delimiter: \n
Position: 1
- Add a new Modify Extracted Data:
New Field Name: EmailAddress
Start Value: [[EmailBody]]
Function: GetWord
Delimiter: \n
Position: 2
You can now use the fields [[EmailName]] and [[EmailAddress]] in your auto response email.
Applies to : ResponseMailer |
|
| Back to top |
|
 |
|