18 lines
913 B
PHP
18 lines
913 B
PHP
<?php
|
|
|
|
// The footer every CluPilot mail carries. Its own file because it is identical
|
|
// in every template, and a legal line has to live in exactly one place.
|
|
return [
|
|
// Deliberately at the top of the footer rather than buried: this is the
|
|
// line a recipient looks for when they cannot place the mail, and the one
|
|
// a spam filter reads for the same purpose.
|
|
'why_you_got_this' => 'You are receiving this because an account at CluPilot uses this address.',
|
|
'imprint' => 'Imprint',
|
|
'privacy' => 'Privacy',
|
|
'terms' => 'Terms',
|
|
'sender_line' => 'CluPilot Cloud · Musterstraße 1, 1010 Vienna · office@clupilot.com',
|
|
// The difference between a marketing mail and an account mail, said out
|
|
// loud: this one has no unsubscribe link, and that is allowed.
|
|
'transactional_note' => 'This message concerns your account and is sent regardless of marketing preferences.',
|
|
];
|