| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- <style>
- {{> styles/all.css }}
- </style>
- <div class="cx-newsletter-container">
- {{$ toast_place }}
-
- <form action="" method="post">
- <div class="section">
- <div class="group center">
- <span class="title">
- {{? cx-newsletter control panel }}
- </span>
- </div>
- <div class="separator"></div>
- <div class="group">
- <label>
- {{? Setup E-Mail address from which mails would being send }}
- </label>
- <input
- type="email"
- name="source_address"
- placeholder="[email protected]"
- value="{{$ source_address }}"
- >
- </div>
- <div class="group">
- <label>
- {{? Setup E-Mail address where users would to reply }}
- </label>
- <input
- type="email"
- name="reply_to_address"
- placeholder="[email protected]"
- value="{{$ reply_to_address }}"
- >
- </div>
- <div class="group">
- <label>
- {{? How many E-Mails would be send in one transaction }}
- </label>
- <input
- type="number"
- name="email_count"
- placeholder="50"
- value="{{$ email_count }}"
- >
- </div>
- <div class="group">
- <label>
- {{? How many SMS-es would be send in one transaction }}
- </label>
- <input
- type="number"
- name="sms_count"
- placeholder="10"
- value="{{$ sms_count }}"
- >
- </div>
- <div class="group">
- <label>
- {{? Which Api Key should be used to access by the SMS gate }}
- </label>
- <input
- type="text"
- name="apikey"
- placeholder="TEST_APIKEY_TEST_APIKEY"
- value="{{$ apikey }}"
- >
- </div>
- <div class="group center">
- <input
- type="submit"
- name="save"
- value="{{? Save }}"
- >
- </div>
- </div>
- </form>
- </div>
|