How to send an HTML page in the body of an email with PHP? This html contains some bootstrap classes, how can I send this page with bootstrap styles, or css styles using the PHP mail function
How to send an HTML page in the body of an email with PHP? This html contains some bootstrap classes, how can I send this page with bootstrap styles, or css styles using the PHP mail function
Using the header
options of the email:
$headers='Content-Type: text/html; charset="utf-8"';
You create a page html
with css
for emails.