Magento - Sending Email = Default

When creating a shipment, Magento has a checkbox that allows you to "send a copy of the shipment."

By default, this check box is not selected. Does anyone know which file I need to change to set this checkbox by default?

+3
source share
1 answer

This app / design / adminhtml / default / default / template / sales / order / shipment / create / items.phtml

You can schedule the following lines:

<p>
    <label class="normal" for="send_email"><?php echo Mage::helper('sales')->__('Email Copy of Shipment') ?></label>
    <input id="send_email" name="shipment[send_email]" value="1" type="checkbox" checked="checked"/>
</p>
+9
source

Source: https://habr.com/ru/post/1769719/


All Articles