Updated Email Quote and Invoice Templates, Invoice and Quote Guest view fully work, along with the ability for a guest to approve or reject a quote. PDF are no longer attached to emails they are provided as a link within an email and are recorded when viewed. Once viewed they can be printed or Downloaded as a PDF from the guest view pages. New option config_recurring_auto_email to automatically email the invoice on auto generated recurring Invoices

This commit is contained in:
root
2019-06-02 00:52:56 -04:00
parent d2bad1a4ba
commit 59882a3af5
12 changed files with 1037 additions and 318 deletions

View File

@@ -9,11 +9,20 @@
</ol>
<!-- Page Content -->
<h1>PHP SELF: <?php echo basename($_SERVER['PHP_SELF']); ?></h1>
<h1>PHP SELF basename: <?php echo basename($_SERVER['PHP_SELF']); ?></h1>
<h1>PHP SELF: <?php echo $_SERVER['PHP_SELF']; ?></h1>
<hr>
<h3>PHP URI: <?php echo $_SERVER['REQUEST_URI']; ?></h1>
<h3>PHP URI: <?php echo $_SERVER['REQUEST_URI']; ?></h3>
<h3>PHP Server_name: <?php echo $_SERVER['SERVER_NAME']; ?></h3>
<h3>PHP HTTP_HOST: <?php echo $_SERVER['HTTP_HOST']; ?></h3>
<h3><?php echo $_SERVER['HTTP_HOST'] . dirname($_SERVER['REQUEST_URI']); ?></h3>
<h1>basename _FILE_ : <?php echo basename(__FILE__); ?></h1>
<h1>User Agent: <?php echo $_SERVER['HTTP_USER_AGENT']; ?>
<p>This is a great starting point for new custom pages.</p>
<h3><?php echo $config_quote_email_subject; ?></h3>
<?php include("footer.php"); ?>