-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
73 lines (64 loc) · 2.56 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
layout: base
title: Inbucket
---
<div class="jumbotron">
<h1>Inbucket <small>disposable webmail</small></h1>
<p>
Inbucket is an email testing application; it will accept messages for any email
address and make them available to view via a web interface.
</p>
<p>
<a class="btn btn-success btn-lg" role="button"
href="{{BASE_PATH}}/about/">Learn more</a>
<a class="btn btn-danger btn-lg" role="button"
href="http://demo.inbucket.org/monitor">Demo time!</a>
<a class="btn btn-primary btn-lg" role="button"
href="https://github.com/inbucket/inbucket/releases">Download it</a>
</p>
</div>
<div class="row">
<div class="col-sm-6">
<h2>Why Inbucket?</h2>
<p> Need to test your webapps outbound emails with Mailinator but stuck
behind a firewall? Want to keep the new application you are developing
secret until it’s time to release it? Need to validate that emails go out
as part of your integration test suite? Want to send a link to a coworker
demonstrating an email without giving them your gmail password? Need to
load test your application without melting your corporate Exchange server?
Want to use production data in your test environment without the risk of
test messages leaking to an end user? Need to preview emails in multiple
desktop email clients? Use Inbucket! </p>
</div>
<div class="col-sm-6">
<h2>Project Status</h2>
<p>
<img alt="Build Status"
src="https://github.com/inbucket/inbucket/actions/workflows/build-and-test.yml/badge.svg">
<img alt="Docker Image"
src="https://github.com/inbucket/inbucket/actions/workflows/docker-build.yml/badge.svg">
</p>
<p>Inbucket is currently production quality: it is being used for real work.</p>
<p>Our docker image has been downloaded more than a million times!</p>
<p>There is plenty more to do; check the
<a href="https://github.com/inbucket/inbucket/issues?state=open"
target="_blank">issues list</a>
for details.</p>
</div>
</div>
<div class="row">
<div class="col-sm-10">
{% if site.posts.size > 0 %}
{% assign post = site.posts[0] %}
<h2>Latest News</h2>
<div class="panel panel-default">
<div class="panel-body blog-style">
<h3 style="margin-top: 0" class="blog-post-title"><a href="{{post.url}}">{{post.title}}</a></h3>
<p class="text-muted">{{post.date | date_to_string}}</p>
{{post.content}}
</div>
</div>
<p>→ View <a href="{{BASE_PATH}}/news/">more news posts</a></p>
{% endif %}
</div>
</div>