Reputation: 1
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
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 :
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 :
This configuration would allow you to retreive mails with the subject "PASSWORD_FTP" from the sender "[email protected]"
Upvotes: 0