I need to remove "Powered by Odoo." when sending mail . Can someone tell me, what's wrong with my code?
<odoo>
<data>
<template id="mail_notification_borders_id" inherit_id="mail.mail_notification_borders">
<xpath expr="//t[1]/div[1]/table[1]/tbody[1]/tr[4]" position="replace"/>
</template>
<template id="mail_notification_light_id" inherit_id="mail.mail_notification_light">
<xpath expr="//t[1]/table[1]/tr[2]" position="replace"/>
</template>
<template id="notification_email_id" inherit_id="mail.message_notification_email">
<xpath expr="//t[1]/div[1]/p[1]" position="replace"/>
</template>
</data>
</odoo>
Regards.