You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In case anyone wants to know, the readme uses CoffeeScript that's why you're facing errors unless you're using a CoffeeScript file extension. Just convert them to JS to get rid of any ecmascript errors.
The setup in readme:
PrettyEmail.options =
from: '[email protected]'
logoUrl: 'http://mycompany.com/logo.png'
companyName: 'myCompany'
companyUrl: 'http://mycompany.com'
companyAddress: '123 Street, ZipCode, City, Country'
companyTelephone: '+1234567890'
companyEmail: '[email protected]'
siteName: 'mycompany'
Would be better with:
PrettyEmail.options ={
from: '[email protected]',
logoUrl: 'http://mycompany.com/logo.png',
companyName: 'myCompany',
companyUrl: 'http://mycompany.com',
companyAddress: '123 Street, ZipCode, City, Country',
companyTelephone: '+1234567890',
companyEmail: '[email protected]',
siteName: 'mycompany'
};
The text was updated successfully, but these errors were encountered: