How far off am I with this?
public void logMails(){
int i = 0;
foreach(var mail in getAllMails()){
//mail contains the data of the mail
writeLog(i, "sender", mail.sender);
writeLog(i, "sendDate", mail.sendDate);
writeLog(i, "recDate", mail.openDate);
writeLog(i, "Title"...