forked from userexec/Sendy-Invoicing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
28 lines (26 loc) · 1.41 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?php
$invoice_info = array(
'company_name' => 'Sample Company', // Who the invoices will be from
'company_name_long' => 'Sample Company Inc.',
'address_line_1' => '105 Company Building, 12th St.', // Street address of company
'address_line_2' => 'City, ST 00000-0000', // City, State, and ZIP of company
'phone_number' => '(000) 000-0000', // Phone number of contact for customer
'email_address' => '[email protected]', // email of contact for customer
'invoice_for' => 'Invoice for Mass Email Services', // Text for invoice description
'account_number' => 'R0000 / 000000' // The account to pay
);
/* Admins familiar with HTML and CSS may further customize all wording
* and invoice visuals in invoicing.php.
*/
$email_notification = array(
'api_key' => '00000000000000000000' // Your Sendy API key
'payee_name' => 'John Smith', // Who receives new invoice notifications?
'payee_email' => '[email protected]', // What is his or her email address?
'server_email' => '[email protected]', // The From: field for the notifications
'smtp_host' => 'smtp.gmail.com', // e.g. 'smtp.gmail.com'
'smtp_port' => '465', // e.g. '465'
'smtp_ssl' => 'ssl', // e.g. 'ssl'
'smtp_username' => '[email protected]', // The username to log into your SMTP account
'smtp_password' => 'supersecretpassword' // The password to log into your SMTP account
);
?>