mirror of
https://github.com/GRFreire/nthmail.git
synced 2026-01-09 04:49:39 +00:00
now, there is only one binary that starts both servers, making them use the same SQL connection. this commit also added some `defer tx.Commit()` to ensure all the transactions were closed
14 lines
200 B
Plaintext
14 lines
200 B
Plaintext
package web_server
|
|
|
|
templ header(rcpt_addr string) {
|
|
<div class="header">
|
|
<h3>
|
|
nthmail.xyz
|
|
</h3>
|
|
<div class="header-addr">
|
|
<p>inbox: </p>
|
|
<span>{ rcpt_addr }</span>
|
|
</div>
|
|
</div>
|
|
}
|