Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

reading file and sending to email

Status
Not open for further replies.

metalman

Programmer
Sep 17, 2001
35
US
new to c++ and need to create program to read a file check it to a master file and send the missing files to an email address. any help to get me started would be mest appreciated.
 
U have 3 issues here.
(1) Reading the file
(2) Processing it
(3) Sending it by Email.

All the three are not that complicated though.
Reading and processing the inputs are not difficult.
For sending the email, if its an SMTP server, u need to implement the SMTP protocol.

For yr file operations, C++ provides lotsa stream classes to do the stuff.

Start the job in the order that i've mentioned. It will be easy
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top