Skip to main content

Open Letter to Bank of America

Dear Bank of America,

For the last four years, I have been your loyal customer and graciously lent you my capital. However, after yesterday's events, I'm strongly considering finding another bank, because I am incredibly disappointed with how you have treated me as a customer.

Issue: I am outside the United States, and needed to wire money to a foreign bank account.

This is a quite common banking transaction, and one that could reasonably be expected to be supported by the namesake bank of the United States. But alas, if only things were so easy.

First problem: Upon attempting to initiate the wire transfer, I was told I needed to sign up for SafePass. I'm all for two-factor authentication, and clicked to sign up, only to discover that Bank of America believes that only Americans own cellphones, and only a 10-digit American cellphone could be used as a SafePass device.

No problem, I thought, I can use my Google Voice number, which I've set up to email me upon receipt of an SMS. But that number wouldn't "take" - I consistently got an error when trying to send the initial authorization code.

So I got my brother online, and told him I was signing up his cellphone. Same problem.

I spoke to a customer support representative, who explained that since I was outside the United States, I couldn't sign up for SafePass. So I asked to have a physical cryptocard overnighted to me, since that is the other SafePass option. I was told that cryptocards cannot be sent overseas. The rep explained that "apparently we've hit a roadblock", but I was offered no alternatives.

So I got clever. I changed my password, called up my brother in the States, gave him my login credentials, and had him try to sign up for SafePass for me. No dice. The system is just plain broken.

I got another rep on the line, and asked for SafePass to be removed. I was told that it couldn't, because despite the fact that it doesn't actually work, it is there for my security. I laughed a little on the inside at the thought that the inability to perform critical banking transactions is indeed one way to achieve solid security.

I finally succeeded in wiring my money by transferring it to my mom's account, and having her drive over to a physical branch and talk to a manager. This seems prophetic - the only way to do banking with Bank of America seems to be to move my money out of your bank.

Please consider that we're your customers, and we willingly give you money for your business. You are also the face of American banking. Incidentally, that face requires clicking "Calculate exchange rate" when you're trying to wire dollars to dollars (at least it calculates it as 1.0, after a 10 second delay).

I expect more. Please don't let me down.

Sincerely,
Darren

Comments

  1. Man, if I can ever find a dollars-to-dollars exchange rate that's not equal to 1.0, I'm going to clean up.

    ReplyDelete
  2. Just become a bank - they make a killing from exchange spreads.

    ReplyDelete
  3. I am having a similar issue with Bank of America and living abroad. Like you, I am left wondering if there a better bank to suit my needs.

    ReplyDelete
  4. I have the same exact problem. Any suggestions?

    ReplyDelete
  5. I also have this problem. Now I really do not like Bank of America and will tell all my family to leave it.... I really need to send all my money to my family in order for them to send it to me? You got to be kidding me... what about my financial privacy?????

    ReplyDelete

Post a Comment

Popular posts from this blog

Why Korean Is Hard For Native English Speakers

A couple of days ago, as an experiment, I wrote my first blog post ever in a non-English language . It was an attempt to explain some of the reasons that Korean is hard to learn for native English speakers, so I figured I might as well try to write it in Korean. Those of you who actually read Korean can see how awkward the attempt was =). In any case, the post came from an email conversation I had with The Korean from  Ask a Korean , a fantastically well-written blog about all things Korea from the perspective of a Korean who moved to the United States during high school. Since I tend to geek out on language things, I figured I might as well post part of that conversation. An edited version follows. --------- Out of the languages that I've attempted to learn so far, Korean has been the hardest. I've done a lot of meta thinking about learning Korean, and I think there are a number of reasons it's difficult for non-Koreans (and especially Westerners) to learn: 1) Obvi...

10 other things South Korea does better than anywhere else

Recently this article about 10 things that South Korea does better than anywhere else  has been making the rounds on social media, but when I first read it, I couldn't tell if it was sincere or satire. A few of the items on the list are not very positive, such as "overworking" and "using credit cards". So, I thought I would try to put together a better list. Here are 10 other things South Korea does better than anywhere else: 1) Small side dishes, a.k.a. " banchan " (반찬) Banchan are by far my favorite aspect of Korean cuisine. Rather than the "appetizer and main dish" approach of the West, a Korean meal is essentially built around small dishes. Even a 5,000 won (about $5 USD) meal at a mall food court will come with two to four banchan in addition to the "main", and often people will actually choose restaurants based  on the banchan (e.g., seolleongtang , or beef bone broth soup, places tend to have the tastiest kimchi). Ther...

Pushing Python Performance With Parallelization

TL;DR: For certain types of programs, you can take advantage of idiosyncrasies in the Python interpreter and the host operating system to create real shared memory between processes and get some pretty good parallelization. Premature optimization is the root of all evil. As a developer, you've probably heard this before, and what it means basically is that you shouldn't waste time optimizing code unless it's already doing what you want it to do. We also live in an era of seemingly unlimited resources with AWS/Google Compute, and often the easiest way to get higher throughput in your programs or service is just to pay for more instances. But sometimes it's fun to see what sort of performance we can get on a simple laptop (and save some cash at the same time). So anyway ... I've been working on this thing, and it took too damn long to run, and I needed to run it lots and lots of times ... so, it was time to optimize. Basic optimization has two main steps: 1) P...