Workflow to send automated emails asking for favorite line votes.
from betfund_solicitor import Message
message = Message(
reason='test',
sender='[email protected]',
to='[email protected]',
subject='SubjectTest',
body_text='TextTest',
body_html=''
)
pytest --cov=betfund_solicitor .