{% extends "withnav_template.html" %} {% from "components/checkbox.html" import checkbox_group %} {% from "components/textbox.html" import textbox %} {% from "components/radios.html" import radios %} {% from "components/page-footer.html" import page_footer %} {% from "components/banner.html" import banner_wrapper %} {% block service_page_title %} How do you plan to use Notify? {% endblock %} {% block maincolumn_content %}

How do you plan to use Notify?

{{ checkbox_group('What kind of messages will you be sending?', [ form.channel_email, form.channel_sms, form.channel_letter ]) }}
{{ textbox(form.start_date, width='1-1') }} {{ textbox(form.start_volume, width='1-1', hint='For example, ‘1,000 per month’.') }} {{ textbox(form.peak_volume, width='1-1', hint='For example, ‘Messages will increase to 20,000 per month in January’.') }}
{{ checkbox_group('How are you going to send messages?', [ form.method_one_off, form.method_upload, form.method_api ]) }}

By requesting to go live you’re agreeing to our terms of use.

{{ page_footer('Request to go live') }}
{% endblock %}