Quote Originally Posted by Baysbeauty View Post
I haven't changed anything except for adding my logo, changed some color hex codes, and changed the width of the templates in the email templates. That is all that I have done in that area.

I really need some help.
The following is from the email_template_default.html

Code:
 <!-- Header Section -->
  <div class="header">
  <img src="email/header.jpg" alt="logo" />
  </div>


  <!-- Content Section -->
  <div class="content">
    <div>$EMAIL_SUBJECT</div>
    <div>$EMAIL_MESSAGE_HTML</div>
  </div>
Compare this to what you've provided:

Code:
  <!-- Header Section -->
  <div class="header">
  <a href="http://www.baysdesigns.com/" target="_blank"><img src="http://www.baysdesigns.com/includes/templates/rustic/images/logo.png" border="0" alt="BaysDesigns - Custom Graphic Designs"></a>  </div>


  <!-- Content Section -->
  <div class="content">
    <div>Dear $EMAIL_FIRST_NAME $EMAIL_LAST_NAME,</div>
    <div>$EMAIL_MESSAGE_HTML</div>
  </div>
The highlighted portion is already provided by the following define statement in includes/languages/english/create_account.php

define('EMAIL_GREET_NONE', 'Dear %s' . "\n\n");

You can edit additional wording for you e-mail(s) through the define statements in this file.

You can also edit additional e-mail details in the following file
includes/languages/english/email_extras.php