Dear all,
I am facing issue and need your help. I would like to parse data from my gmail about leads and wanted to transfer to Google sheets. I am using Text Parser module..>Match Pattern..> and put regular expression
Name : (?[^\n]+)\s+Email : (?[^\n]+)\s+Phone : (?[^\n]+)\s+City : (?[^\n]+)\s+State : (?[^\n]+)\s+Pincode : (?[^\n]+)\s
but once I connect to google sheet module,nothing is showing ..kindly help..Enclosed my screenshots
1 Like
Name:\s*(.+)\s+Email:\s*(.+)\s+Mobile:\s*(.+)\s+City:\s*(.+)\s+State:\s*(.+)\s+Pincode:\s*(.+)
- Gmail Watch Email module:
Set it to watch new emails with subject like New Green Exchange Form Submission.
Text Parser â Match Pattern:
- Input body content of the email (e.g., text or body).
- Use the regex above.
- Test to confirm correct values are matched in order.
- Google Sheets â Add Row module:
- Map each regex match group (1â6) to your sheet columns:
- Column A: 1 â Name
- Column B: 2 â Email
- Column C: 3 â Mobile
- Column D: 4 â City
- Column E: 5 â State
- Column F: 6 â Pincode
1 Like
Ur GEM of Person Dear ..Thanks..NAMASTE From India
Thanks One more Help I am getting lead details in Google Sheet 1 through scenario (Gmail+Text Parser+Google Sheet) which contains columns like Customer Name, Email, Phone, City, address, Pincode..Now I want to compare new row with execiting Master Google Sheet 2 on the basis of Pincode matching. Sheet 2 contains (Pincode, Dealer Name, Dealer email, Store name) data. Based on comparision I want send mailer to Dealer email id through Oulook âĶI am using below Scenario
- Watch New Rows-> Google Sheet 1
- Search Rows-> Google Sheet 2 Filter Pincode from Sheet 1 & Sheet 2
- Outlook-> Create and send message-> To Recipients-> Dealer email & Name
But its not working..Please help