Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated outdated screenshots

...

The tags described in Blesta are only a list of commonly-used tags, for brevity.

Image RemovedImage Added

The tags below are all of those available for this email template. For other email and tag customizations, see Customizing Emails.

TagDescriptionNotes
{contact.first_name}The contact's first name 
{contact.last_name}The contact's last name 
{contact.email}The contact's email address 
{company.name}The name of the company, in Blesta, that the client belongs to 
{response.transaction_id}The transaction ID given by the payment gateway 
{amount}The formatted amount processed with the gateway

e.g. $15.00

{account_type}The type of ACH payment account usede.g. "Checking"
{last_four}The last four digits of the payment account number 


Expand
titleAdditional Tags

Due to the nature of tag objects containing several fields, many of which are likely irrelevant for use in email templates, but may be useful to you in certain circumstances, an example dump of the tag objects are shown below.

Code Block
languagephp
titleThe {contact} object
collapsetrue
stdClass Object
(
    [id] => 2
    [client_id] => 2
    [user_id] =>
    [contact_type] => primary
    [contact_type_id] => 
    [first_name] => First
    [last_name] => Last
    [title] => 
    [company] => Company Co.
    [email] => first.last@domain.com
    [address1] => 123 Main St.
    [address2] => 
    [city] => City
    [state] => CA
    [zip] => 90001
    [country] => US
    [date_added] => 2014-01-01 00:00:00
    [contact_type_name] =>
    [contact_type_is_lang] =>
)


Code Block
languagephp
titleThe {company} object
collapsetrue
stdClass Object
(
    [id] => 1
    [name] => Phillips Data, Inc.
    [hostname] => domain.com
    [address] => 
    [phone] => 
    [fax] => 
}


Code Block
languagephp
titleThe {response} object
collapsetrue
 stdClass Object
(
    [status] => approved
    [reference_id] => 0987654321
    [transaction_id] => 1X270001110
    [message] => Success
}

 

 

 

...