- Created a base mail template - Adapt and improve document API to usage of catalogs and processors - Adapt eveai_sync to new authentication mechanism and usage of catalogs and processors
28 lines
1.1 KiB
HTML
28 lines
1.1 KiB
HTML
{% extends "email/base.html" %}
|
|
{% block content %}
|
|
<p>Hello,</p>
|
|
|
|
<p>A new API project has been created for your Ask Eve AI tenant. Here are the details:</p>
|
|
|
|
<div class="info-box">
|
|
<p><strong>Tenant ID:</strong> {{ tenant_id }}</p>
|
|
<p><strong>Tenant Name:</strong> {{ tenant_name }}</p>
|
|
<p><strong>Project Name:</strong> {{ project_name }}</p>
|
|
<p><strong>API Key:</strong> <span style="font-family: monospace; background-color: #f0f0f0; padding: 5px;">{{ api_key }}</span></p>
|
|
|
|
<div style="margin-top: 15px;">
|
|
<p><strong>Enabled Services:</strong></p>
|
|
<ul style="list-style-type: none; padding-left: 0;">
|
|
{% for service in services %}
|
|
<li>✓ {{ service }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="warning-box">
|
|
<strong>Important:</strong> Please store this API key securely. It cannot be retrieved once this email is gone.
|
|
</div>
|
|
|
|
<p>You can start using this API key right away to interact with our services. For documentation and usage examples, please visit our <a href="https://docs.askeveai.com">documentation</a>.</p>
|
|
{% endblock %} |