-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
169 lines (116 loc) · 4.92 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv='cache-control' content='no-cache'>
<meta http-equiv='expires' content='0'>
<meta http-equiv='pragma' content='no-cache'>
<script src="/commons.js"></script>
<script src="https://www.google.com/recaptcha/api.js?hl=en"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<!--Meta tags-->
<title>QUEUEMAIL.DEV - Documentation & examples</title>
<meta name="description" content="Reliable email delivery API. Free tier. Send asynchronously.">
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="QUEUEMAIL.DEV">
<meta itemprop="description" content="Reliable email delivery API. Free tier. Send asynchronously.">
<meta itemprop="image" content="https://raw.githubusercontent.com/queuemail/docs-and-examples/master/logo-q.png">
<!-- Facebook Meta Tags -->
<meta property="og:url" content="https://docs.queuemail.dev">
<meta property="og:type" content="website">
<meta property="og:title" content="QUEUEMAIL - Reliable email delivery API">
<meta property="og:description" content="Reliable email delivery API. Free tier. Send asynchronously.">
<meta property="og:image" content="https://raw.githubusercontent.com/queuemail/docs-and-examples/master/logo-q.png">
<!-- Twitter Meta Tags -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="QUEUEMAIL - Reliable email delivery API">
<meta name="twitter:description" content="Reliable email delivery API. Free tier. Send asynchronously.">
<meta name="twitter:image" content="https://raw.githubusercontent.com/queuemail/docs-and-examples/master/logo-q.png">
<!-- Stylesheets -->
<!--link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/themes/buble.css" /-->
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify/themes/vue.css">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/style.min.css" title="docsify-darklight-theme" type="text/css">
<!-- Favicon -->
<link rel="icon" href="logo-q.png" type="image/png">
<!-- Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-2NGZKG5YF5"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-2NGZKG5YF5');
</script>
<style>
:root {
--docsifytabs-border-color: #ededed;
--docsifytabs-tab-highlight-color: purple;
}
.docsify-tabs__tab { cursor: pointer; }
.markdown-section a { color: #7e4bd1 !important;}
.sidebar ul li.active > a { color: #7e4bd1 !important;}
</style>
</head>
<body>
<noscript>This page requires JavaScript to work, please enable it or visit our GitHub repository <a href="https://github.com/queuemail/docs-and-examples">here</a>.</noscript>
<nav>
<!--a href="/">English</a>
<a href="/es/index.html#/">Spanish</a-->
<a target="_blank" href="https://queuemail.dev/qmadmin/login">Control panel</a>
</nav>
<div id="app">Loading...</div>
<script>
window.$docsify = {
executeScript: true,
search: {
maxAge: 86400000, // Expiration time, the default one day
paths: 'auto', // or 'auto'
// Localization
placeholder: {
'/es/': 'Escriba para buscar',
'/': 'Type to search'
},
// Localization
noData: {
'/es/': 'Sin resultados',
'/': 'No Results'
},
// Headline depth, 1 - 6
depth: 6,
hideOtherSidebarContent: false, // whether or not to hide other sidebar content
},
name: 'Queuemail.dev',
repo: 'queuemail/docs-and-examples',
loadSidebar: true,
autoHeader: true,
alias: {
'/.*/_sidebar.md': '/_sidebar.md',
"/es" : "/es/index.html",
"/es/(.*)" : "/es/$1"
},
tabs: {
persist : true, // default
sync : true, // default
theme : 'classic', // default
tabComments: true, // default
tabHeadings: true // default
}
//, logo: 'logo-q.png',
}
</script>
<!-- Docsify v4 -->
<!--script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script src="//unpkg.com/docsify/lib/plugins/search.min.js"></script-->
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/plugins/search.min.js"></script>
<script src="//cdn.jsdelivr.net/npm/docsify-darklight-theme@latest/dist/index.min.js" type="text/javascript"></script>
<!-- docsify-tabs (latest v1.x.x) -->
<script src="https://cdn.jsdelivr.net/npm/docsify-tabs@1"></script>
<style>
blockquote:first-of-type {
background-color: rgba(235, 248, 242, 0.363);
}
</style>
</body>
</html>