I was working on another email part of my Modern Ruby Email Course so I did some benchmarks on `Data.define` vs `Struct` vs `OpenStruct`
- When creating new objects, Struct is the fastest, Open Struct the slowest
- When accessing attributes, Data(dot)define is slightly faster
