Test News email feature move to durable function

Site news has a feature when a news article is published it can send it as an email. This can time out on some of our bigger sites. 

We need to move this to a durable function
  1. When the article is made it sends to a queue trigger
  2. The queue trigger then creates the orchestration 
  3. It batches out the emails in groups of 25(can be more or less) per activity
    1. Each activity can only run for 10 mins or it times out
  4. The activity loops over the batch and sends out the email

Should still get an email when you pick the option on news articles. Just should now be able to handle large amounts of customers.  Example would timeout after 2k, should now be much more