Update ShapeShift support emails (#1983)

Update ShapeShift support emails
This commit is contained in:
Connor Bryan 2018-06-26 13:54:45 -05:00 committed by Daniel Ternyak
parent 23f6ffe56f
commit c574a17884
1 changed files with 3 additions and 1 deletions

View File

@ -35,7 +35,9 @@ class SupportFooter extends React.PureComponent<Props, {}> {
const pair = origin && destination ? origin.label + destination.label : 'BTCETH';
const rates = provider === 'shapeshift' ? shapeshiftRates.byId : bityRates.byId;
const emailTo =
provider === 'shapeshift' ? 'support@mycrypto.com' : 'support@mycrypto.com,mew@bity.com';
provider === 'shapeshift'
? 'support@shapeshift.zendesk.com,support@mycrypto.com'
: 'support@mycrypto.com,mew@bity.com';
const mailSubject = encodeURI('Issue regarding my Swap via MyCrypto');
const serviceProvider = provider.charAt(0).toUpperCase() + provider.slice(1);
let mailBody;