Skip to content
Snippets Groups Projects
smtp.php 1.66 KiB
Newer Older
<div class="form-group">
	<label><?php echo GLOBALSETTING['SETTING']['SMTP']['HOST'];?></label>
	<input type="text" class="form-control" name="SMTP_HOST" value="<?php echo $grundconfig->SMTP_HOST;?>">
	<small class="form-text text-muted"><?php echo GLOBALSETTING['SETTING']['SMTP']['HOSTN'];?></small>
</div>

<div class="form-group">
	<label><?php echo GLOBALSETTING['SETTING']['SMTP']['PORT'];?></label>
	<input type="text" class="form-control" name="SMTP_PORT" value="<?php echo $grundconfig->SMTP_PORT;?>">
	<small class="form-text text-muted"><?php echo GLOBALSETTING['SETTING']['SMTP']['PORTN'];?></small>
</div>

<div class="form-group">
	<label><?php echo GLOBALSETTING['SETTING']['SMTP']['VERBI'];?></label>
	<select name="SMTP_VERBINDUNG" class="form-control">
		<option value="ssl" <?php if($grundconfig->SMTP_VERBINDUNG == 'ssl'){ echo 'selected="selected"';}?>>SSL</option>
		<option value="tls" <?php if($grundconfig->SMTP_VERBINDUNG == 'tls'){ echo 'selected="selected"';}?>>TLS</option>
	</select>
	<small class="form-text text-muted"><?php echo GLOBALSETTING['SETTING']['SMTP']['VERBIN'];?></small>
</div>

<div class="form-group">
	<label><?php echo GLOBALSETTING['SETTING']['SMTP']['NICK'];?></label>
	<input type="text" class="form-control" name="SMTP_LOGIN" value="<?php echo $grundconfig->SMTP_LOGIN;?>">
	<small class="form-text text-muted"><?php echo GLOBALSETTING['SETTING']['SMTP']['NICKN'];?></small>
</div>

<div class="form-group">
	<label><?php echo GLOBALSETTING['SETTING']['SMTP']['PASS'];?></label>
	<input type="text" class="form-control" name="SMTP_PASS">
	<small class="form-text text-muted"><?php echo GLOBALSETTING['SETTING']['SMTP']['PASSN'];?></small>
</div>