I've configured a server (Ubuntu) with OpenSSH for file transfer via sFTP. The requirement is that after a file transfer, a mail is sent confirming the file was received by the system. How would I do this without having to poll the directory every x time for new/changed files?

link|improve this question
feedback

1 Answer

Refer Checking script results and Send a mail and Automate file transfers (or synchronization) to FTP server or SFTP server

Example: sending a email using command prompt

winscp.com /script=example.txt
if errorlevel 1 goto error

echo Success
sendmail.exe -t < success_mail.txt
goto end

:error
echo Error!
sendmail.exe -t < error_mail.txt

:end

Refer one more answer related to sending an email, Sending mail from the command line, in an automated way

link|improve this answer
Thanks for your answer, however this is on the client side, I'd like to do this on the server side without any additional commands issued by the client. – Gunther De Poortere Jan 26 at 10:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.