Advertisement
Guest User

Untitled

a guest
Nov 17th, 2016
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.49 KB | None | 0 0
  1. @extends('emails.base')
  2.  
  3. @section('mail_subject')
  4. Your Order Confirmation!
  5. @endsection
  6.  
  7. @section('email_title')
  8. Your Order Confirmation!
  9. @endsection
  10.  
  11. @section('intro_heading')
  12. Hi {{ $order->customer }}, thanks for buying with us!
  13. @endsection
  14.  
  15. @section('intro_message')
  16.  
  17. @if( $order->payment_type == 'Escrow' )
  18. Thank you for your offer. An administrator will get in touch with you right away.
  19. @else
  20. Thank you for your order.
  21. @endif
  22.  
  23. @endsection
  24.  
  25. @section('mail_content')
  26.  
  27.  
  28. @if( \Cart::count() )
  29. @foreach( \Cart::content(true) as $domain )
  30. <!-- MODULE ROW // -->
  31. <tr>
  32. <td align="center" valign="top">
  33. <!-- CENTERING TABLE // -->
  34. <table border="0" cellpadding="0" cellspacing="0" width="100%">
  35. <tr>
  36. <td align="center" valign="top">
  37. <!-- FLEXIBLE CONTAINER // -->
  38. <table border="0" cellpadding="30" cellspacing="0" width="500" class="flexibleContainer">
  39. <tr>
  40. <td style="padding-bottom:0;" valign="top" width="500" class="flexibleContainerCell">
  41.  
  42. <!-- CONTENT TABLE // -->
  43. <table align="left" border="0" cellpadding="0" cellspacing="0" width="100%">
  44. <tr>
  45. <td align="left" valign="top" class="flexibleContainerBox">
  46. <table border="0" cellpadding="0" cellspacing="0" width="90" style="max-width:100%;">
  47. <tr>
  48. <td align="left" class="textContent">
  49. <br />
  50. .{{ pathinfo($domain->name, PATHINFO_EXTENSION) }}
  51. </td>
  52. </tr>
  53. </table>
  54. </td>
  55. <td align="right" valign="middle" class="flexibleContainerBox">
  56. <table class="flexibleContainerBoxNext" border="0" cellpadding="0" cellspacing="0" width="350" style="max-width:100%;">
  57. <tr>
  58. <td align="left" class="textContent">
  59. <h3 style="color:#5F5F5F;line-height:125%;font-family:Helvetica,Arial,sans-serif;font-size:20px;font-weight:normal;margin-top:0;margin-bottom:3px;text-align:left;">${{ number_format($domain->price)}}</h3>
  60. <div style="text-align:left;font-family:Helvetica,Arial,sans-serif;font-size:15px;margin-bottom:0;color:#5F5F5F;line-height:135%;">user: {{ $domain->name }}
  61. </div>
  62. <div style="text-align:left;font-family:Helvetica,Arial,sans-serif;font-size:15px;margin-bottom:0;color:#5F5F5F;line-height:135%;">
  63. username: {{ $domain->reddit_username }} &amp; password: {{ $domain->reddit_password }}
  64. </div>
  65. </td>
  66. </tr>
  67. </table>
  68. </td>
  69. </tr>
  70. </table>
  71. <!-- // CONTENT TABLE -->
  72.  
  73. </td>
  74. </tr>
  75. </table>
  76. <!-- // FLEXIBLE CONTAINER -->
  77. </td>
  78. </tr>
  79. </table>
  80. <!-- // CENTERING TABLE -->
  81. </td>
  82. </tr>
  83. <!-- // MODULE ROW -->
  84. @endforeach
  85.  
  86. <!-- MODULE ROW // -->
  87. <tr>
  88. <td align="center" valign="top">
  89. <!-- CENTERING TABLE // -->
  90. <table border="0" cellpadding="0" cellspacing="0" width="100%">
  91. <tr>
  92. <td align="center" valign="top">
  93. <!-- FLEXIBLE CONTAINER // -->
  94. <table border="0" cellpadding="0" cellspacing="0" width="500" class="flexibleContainer">
  95. <tr>
  96. <td align="center" valign="top" width="500" class="flexibleContainerCell">
  97. <table border="0" cellpadding="30" cellspacing="0" width="100%">
  98. <tr>
  99. <td align="center" valign="top">
  100.  
  101. <!-- CONTENT TABLE // -->
  102. <table border="0" cellpadding="0" cellspacing="0" width="100%">
  103. <tr>
  104. <td valign="top" class="textContent">
  105. <!--
  106. The "mc:edit" is a feature for MailChimp which allows
  107. you to edit certain row. It makes it easy for you to quickly edit row sections.
  108. http://kb.mailchimp.com/templates/code/create-editable-content-areas-with-mailchimps-template-language
  109. -->
  110. <h3 mc:edit="header" style="color:#5F5F5F;line-height:125%;font-family:Helvetica,Arial,sans-serif;font-size:20px;font-weight:normal;margin-top:0;margin-bottom:3px;text-align:left;">
  111. Order Total: ${{ number_format(\Cart::total(), 0)}}
  112. </h3>
  113. </td>
  114. </tr>
  115. </table>
  116. <!-- // CONTENT TABLE -->
  117.  
  118. </td>
  119. </tr>
  120. </table>
  121. </td>
  122. </tr>
  123. </table>
  124. <!-- // FLEXIBLE CONTAINER -->
  125. </td>
  126. </tr>
  127. </table>
  128. <!-- // CENTERING TABLE -->
  129. </td>
  130. </tr>
  131. <!-- // MODULE ROW -->
  132.  
  133. @endif
  134.  
  135. @endsection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement