#include <vector>
#include <string>
using namespace std;

struct eMailMsg {
string to; // i.e. "professor@stanford.edu"
string from; // i.e. "student@stanford.edu"
string message; // body of message
string subject; // i.e. "CS106 Rocks!"
int date; // date email was sent
int time; // time email was sent
};

int main(){
    vector<eMailMsg> mailVector;
    mailVector.push_back({"professor@stanford.edu","student@stanford.edu","body of message","SUBJECT WAS MISSING",4,16});
}
