-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
141 lines (113 loc) · 4.99 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
<!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="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<meta name="description" content="A reliable and developer-friendly email delivery API. Supports asynchronous sending with a free tier.">
<!-- Meta tags -->
<title>QUEUEMAIL.DEV – Documentation & Examples</title>
<meta name="description" content="A reliable and developer-friendly email delivery API. Supports asynchronous sending with a free tier.">
<!-- Google / Search Engine Tags -->
<meta itemprop="name" content="QUEUEMAIL.DEV">
<meta itemprop="description" content="A reliable and developer-friendly email delivery API. Supports asynchronous sending with a free tier.">
<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="Fast, scalable, and reliable API for sending emails asynchronously. Includes a free usage tier.">
<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="Fast, scalable, and reliable API for sending emails asynchronously. Includes a free usage tier.">
<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 site requires JavaScript to function properly. Please enable JavaScript or visit our GitHub repository <a href="https://github.com/queuemail/docs-and-examples">here</a>.</noscript>
<nav>
<!-- Language options
<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, // Cache expiry: 1 day
paths: 'auto',
// Search placeholders
placeholder: {
'/es/': 'Escriba para buscar',
'/': 'Type to search'
},
// Search results fallback
noData: {
'/es/': 'No results found',
'/': 'No results found'
}
},
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,
sync: true,
theme: 'classic',
tabComments: true,
tabHeadings: true
}
};
</script>
<!-- Docsify Core -->
<!-- <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 Plugin -->
<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>