DaoE-label also known as Labelless
Utilizing daoE-LABEL, you have the option to send parcels, without having to print a label. This is done by writing a nine-digit code directly on the parcel and sending it from a daoSHOP. It doesn’t get much easier!
Labelless is supported for:
- DAO
- DAO pakkeshop til direkte
- DAO Retur
DAO Outgoing shipments
When using supported services for labelless, a code with be generated on the label which the customer can use in case a return is necessary.
DAO Incoming shipments (Returns)
To start using labelless returns you need a return shipping rate with one of the below carriers, that support labelless. Secondly, you need to add the labelless codes to your mail templates.
First, navigate to your return mail template.
If you have not made any modifications to the default Webshipper mail template, the easiest way of adding the labelless codes to your return mails is by resetting it as we have added this to the default template on our end. Resetting to default will not immediately save the template, so you can try it out and use the preview button to see how it looks compared to your old template.
To reset your template simply navigate to your mail template and click the "reset" button in the top right corner.
If you have made custom changes to your mail template, or do not want to reset to the default template you can manually add the following snippet to your mail templates and adapt it to your needs.
{% assign labelless_code_count = return.shipment.packages | map: "labelless_code" | compact | size %}
{% if labelless_code_count 0 %}
Labelless codes:
{% for package in return.shipment.packages %} {% if package.labelless_code %} {% endif %} {% endfor %}
Package weight | Labelless code |
---|---|
{{ package.weight }} {{ package.weight_unit }} | {{ package.labelless_code }} |
{% endif %}