Inserting RFQ Line Items inside the email template

Hi,

I want to list RFQ items inside the email body rather than adding it as an attachment.
Any support is appreciated.

Thank you,
Ramaly

Hi,

did you found solution?

you can create new email template.

in that you can add your items
eg:

<p>Dear Supplier,</p>

Please provide quotation for the following items:

{% for item in doc.items %}
<tr>
    <td>{{ item.item_code }}</td>
    <td>{{ item.item_name }}</td>
    <td>{{ item.qty }}</td>
    <td>{{ item.uom }}</td>
</tr>
{% endfor %}
Item Code Item Name Qty UOM

Regards,
{{ doc.company }}

Something like this,

let me know you, if you have any doubts