> For the complete documentation index, see [llms.txt](https://hencework.gitbook.io/pangong/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hencework.gitbook.io/pangong/application/email.md).

# Email

## Introduction

Pangong Email app is a web-based email client designed and developed exclusively for Pangong framework. It has a responsive design to work flawlessly across many devices.&#x20;

## How to Setup

### **HTML Stucture**

```markup
<div class="emailapp-wrap">
	<div class="emailapp-sidebar">
		<div class="nicescroll-bar">
			<div class="emailapp-nav-wrap">
				<!--Email app sidebar content-->
			</div>
		</div>
	</div>
	<div class="email-box">
		<div class="emailapp-left">
			<header>
				<!--Email app left content-->
			</header>
			<form role="search" class="email-search">
				<!--Email app left content-->
			</form>
			<div class="emailapp-emails-list">
			</div>
		</div>
		<div class="emailapp-right">
			<header>
				<!--Email app right content-->
			</header>
			<div class="email-body">
				<!--Email app body content-->
			</div>
		</div>
	</div>
	<!-- Compose email -->
	<div class="modal fade" id="exampleModalEmail" tabindex="-1" role="dialog" aria-labelledby="exampleModalEmail" aria-hidden="true">
		<!--Email app compose email content-->
	</div>
	<!-- /Compose email -->
</div>
                    
```

## Dependency

### JS

```markup
<!-- Tinymce JavaScript -->
<script src="vendors/tinymce/tinymce.min.js"></script>

<!-- Tinymce Wysuhtml5 Init JavaScript -->
<script src="dist/js/tinymce-data.js"></script>
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://hencework.gitbook.io/pangong/application/email.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
