<inputtype="text"class="form-control form-control-custom "id="senderAddress"name="senderAddress"formControlName="senderAddress"tooltipPosition="top"placeholder="Sender Address"pTooltip="The email address that the emails will be sent from">
<inputtype="text"class="form-control form-control-custom "id="senderAddress"[ngClass]="{'form-error':emailForm.get('senderAddress').hasError('required'),'form-error':emailForm.get('senderAddress').hasError('incorrectMailFormat')}"name="senderAddress"formControlName="senderAddress"tooltipPosition="top"placeholder="Sender Address"pTooltip="The email address that the emails will be sent from">
<small*ngIf="emailForm.get('senderAddress').hasError('required')"class="error-text">The Email Sender Address is required</small>
<small*ngIf="emailForm.get('senderAddress').hasError('email') && !emailForm.get('senderAddress').hasError('required')"class="error-text">The Email Sender Address needs to be a valid email address</small>
</div>
</div>
<divstyle="padding-left: 0"class="col-md-6">
<divstyle="padding-left: 0"class="col-md-6">
<inputtype="text"class="form-control form-control-custom "id="senderName"name="senderName"formControlName="senderName"tooltipPosition="top"placeholder="Sender Name"pTooltip="The 'Friendly' name that will appear in the 'FROM:' part of the email">
<inputtype="text"class="form-control form-control-custom "id="senderName"name="senderName"formControlName="senderName"tooltipPosition="top"placeholder="Sender Name"pTooltip="The 'Friendly' name that will appear in the 'FROM:' part of the email">
<inputtype="text"class="form-control form-control-custom"[ngClass]="{'form-error':emailForm.get('adminEmail').hasError('required'),'form-error':emailForm.get('adminEmail').hasError('email')}"id="adminEmail"name="adminEmail"formControlName="adminEmail"tooltipPosition="top"pTooltip="The administrator email will be used to send emails for admin only notifications (e.g. New Requests that require approvals)">
<inputtype="text"class="form-control form-control-custom "id="adminEmail"name="adminEmail"formControlName="adminEmail"tooltipPosition="top"pTooltip="The administrator email will be used to send emails for admin only notifications (e.g. New Requests that require approvals)">
<small*ngIf="emailForm.get('adminEmail').hasError('required')"class="error-text">The Admin Email Address is required</small>
</div>
<small*ngIf="emailForm.get('adminEmail').hasError('email') && !emailForm.get('adminEmail').hasError('required')"class="error-text">The Admin Email needs to be a valid email address</small>
<inputtype="text"class="form-control form-control-custom "id="username"name="username"formControlName="username"pTooltip="The username if authentication is enabled"tooltipPosition="top">
<inputtype="text"class="form-control form-control-custom"[ngClass]="{'form-error':emailForm.get('username').hasError('required')}"id="username"name="username"formControlName="username"pTooltip="The username if authentication is enabled"tooltipPosition="top">
</div>
<small*ngIf="emailForm.get('username').hasError('required')"class="error-text">The Username is required</small>
<inputtype="password"class="form-control form-control-custom " id="password"name="password"formControlName="password"pTooltip="The password if authentication is enabled"tooltipPosition="top">
<inputtype="password"class="form-control form-control-custom"[ngClass]="{'form-error':emailForm.get('password').hasError('required')}" id="password"name="password"formControlName="password"pTooltip="The password if authentication is enabled"tooltipPosition="top">
</div>
<small*ngIf="emailForm.get('password').hasError('required')"class="error-text">The Password is required</small>
<inputtype="text"class="form-control form-control-custom "id="accessToken"name="accessToken"formControlName="accessToken"pTooltip="Enter your API Key from Pushover.">
<inputtype="text"class="form-control form-control-custom "id="accessToken"name="accessToken"[ngClass]="{'form-error':form.get('accessToken').hasError('required')}"formControlName="accessToken"pTooltip="Enter your API Key from Pushover.">
</div>
<small*ngIf="form.get('accessToken').hasError('required')"class="error-text">The Access Token is required</small>
<smallclass="control-label"> Click <atarget="_blank"href="https://my.slack.com/services/new/incoming-webhook/">Here</a> and follow the guide. You will then have a Webhook Url</small>
<smallclass="control-label"> Click <atarget="_blank"href="https://my.slack.com/services/new/incoming-webhook/">Here</a> and follow the guide. You will then have a Webhook Url</small>