Include Customer Email Address Info On Printed Invoice

When I print a copy of the invoice (4.9) the customers email address is not included on the printed version.

I would like to add that to the printed version.

I have looked at the documentation with regard to editing Documents but I don't have the expertise to go thru all that.

Is there a simpler way to just insert the information I need?

Thank you

Hello!

You should add

{{ u.email }}

to the necessary place under Design > Documents > Invoice.

You sure it's not {{order_info.email}}?

You sure it's not {{order_info.email}}?

There is no such variable (or even {{order.email}}) available under Design > Documents > Invoice.

Oops, I fogot that you hard-coded a limited list of order data variables that can be used without additional php coding with the new email editing method. That was one of the really nice things about the template version is that everything is available to use.

In documents/invoice/code snippets/bill to I see the following code

{{u.b_address}}
{{u.b_address_2}}

I don't know what the -u.b represents. I don't see the email snippet any where in the documents. I think this is where I should add the code. I ad just not sure what to ad.
Thank you

User billing address

s_address is user shipping address

So if I add
{{u.b_email}}

Do You think that would work. I don't see a snippet for email although it is in the order page under bill to.. I don't see a code for email even under the order summary.

So if I add
{{u.b_email}}

Do You think that would work. I don't see a snippet for email although it is in the order page under bill to.. I don't see a code for email even under the order summary.

Use

{{ u.email }}

It works on the demo

Thank you eCom it works.