Thank you for reply.
Here is short test code:
Code (C++):#include <ESP8266WiFi.h>
#include <ESP8266WebServer.h>
const char* myssid = "AP MODE"; //SSID AP MODE
const char* mypassword = "12345678"; //Password AP MODE
char output_buffer[5000] = "\
<!DOCTYPE html>\
<html>\
<head>\
<meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\
<title>Main page</title>\
</head>\
<body>\
What is Visual Micro?\
\
Visual Micro is an so called extension for Microsoft Visual Studio 2017 and 2019 and\
for Atmel Studio 7 that allows any Arduino project to be developed, compiled, and\
then uploaded to any Arduino board, while taking benefit of the powerful features of Visual Studio and Atmel Studio.\
\
Visual Micro is fully compatible with the Arduino development environment and uses\
the same libraries, source code, and development tools. The difference lies\
in Visual Micro's user interface which provides an advanced and professional\
development environment, and allows for more advanced development than the existing Arduino IDE.\
\
What does the term IDE mean?\
\
In this documentation, you will often find the term \"IDE\". This is an industry\
standard term meaning Integrated Development Environment, which is a software\
application that incorporates a source code editor, build tools such as a compiler\
and a debugging system. The IDE is used to write, edit, build, and test your software.\
Whilst Arduino's IDE provides a basic starter level IDE, Visual Micro in conjunction\
with Microsoft Visual Studio or Atmel Studio provides an enhanced and more functional IDE.\
</body>\
</html>\
";
WiFiServer server(80);
ESP8266WebServer serverAP(80);
void handleRoot()
{
// serverAP.send(200, "text/html", "<h1>Connected</h1>");
serverAP.send(200, "text/html", output_buffer);
}
void setup()
{
Serial.begin(115200);
Serial.println(output_buffer);
Serial.println("\n=========================");
WiFi.mode(WIFI_AP);
//AP
IPAddress myIP =WiFi.softAP(myssid, mypassword);
serverAP.on("/", handleRoot);
serverAP.begin();
}//setup()
void loop()
{
serverAP.handleClient();
delay(100);
}//loop()
/*
*/
and outputs sent to E-mail