Dima Trachtman
Dima Trachtman

Reputation: 1

Extracting data from Outlook using talend

I have a job in talend that dowloads some files from an FTP server. The problem is that the password changes every other week and I get the new password by email.

Is there any way to build a job that will scan my mail in Outlook for the new password, and save it in context to use it in my FTP download job?

Upvotes: -1

Views: 34

Answers (1)

Emile Dadou
Emile Dadou

Reputation: 554

Hi yes it's possible there is component that allows you to retreive emails and write the content into files. it's the tPop component, it's configuration should look like this : enter image description here

The port is usually 110 or 995 (if it works over SSL/TLS)

And in the advanced setting you can filter the mail you want to retreive for example :

enter image description here

This configuration would allow you to retreive mails with the subject "PASSWORD_FTP" from the sender "[email protected]"

Upvotes: 0

Related Questions