-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
fditrapani
committed
Sep 9, 2020
1 parent
930f6d2
commit 38a48d1
Showing
4 changed files
with
24 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,30 +37,27 @@ | |
$verticalSpacer = renderVerticalSpacer( "40px" ); | ||
$halfVerticalSpacer = renderVerticalSpacer( "20px" ); | ||
|
||
$billingContent = renderBillingHistory(); | ||
|
||
$recentPurchaseTitle = renderBoldText("Recently renewed"); | ||
$recentPurchaseDetails = renderItem( | ||
"filippodt.com", | ||
$color['success'], | ||
"Renewed for $20 on July 22, 2020", | ||
".com domain registration" ); | ||
$billingTitle = renderSecondaryTitle('Account information'); | ||
$billingContent = renderBoldText('fditrapani') . "<br/>" . | ||
renderHiddenTextLink('[email protected]') . "<br/>" . | ||
renderTextLink('Manage account'); | ||
|
||
$supportContent = renderSupport(); | ||
|
||
$content = <<<EOD | ||
$horizontalRule | ||
$halfVerticalSpacer | ||
$creditCard | ||
$product | ||
$halfVerticalSpacer | ||
$horizontalRule | ||
$halfVerticalSpacer | ||
$product | ||
$creditCard | ||
$halfVerticalSpacer | ||
$horizontalRule | ||
$verticalSpacer | ||
$halfVerticalSpacer | ||
$billingContent | ||
$halfVerticalSpacer | ||
$supportContent | ||
EOD; | ||
|