I've got an Email Azure Worker Role which (you guessed it), simply sends an email.
It works off a queue which has the To, From, and Body. So the actual queue message has the email itself.
But i've run into an issue where the size of an email exceeded 64KB, so it cannot be put on the queue.
So now i'm thinking i need to store the email on an Azure Blob, then store a reference to that blob on the message instead. Then the worker can just grab the email from the blob.
But it seems like Blob Storage is more for images, files, etc - this is simply a POCO in memory i have created.
How can i essentially put a POCO on an Azure Blob - or does anyone have any other ideas to accomplish this task?
Solved my problem.