Categories: Other

Replacement straws for Thermos Bottles

Sorry this has nothing to do with coding.

But if you have kids and have the Thermos aluminum straw Bottles such as the Thermos Funtainer or Foogo Straw bottles, you can get replacement straws directly from Thermos for $1 a piece. My kids like to bite the straws and they get destroyed pretty quickly. If you need just the top part of the straw, that would be $0.50.

Apparently, people are reselling these straws on Ebay and other sites for $7-$10 a piece! So Thermos is limiting each order to 5 straws. I am putting this out there to hopefully direct people to the source.

Call Thermos directly at 1-800-831-9242 to order your replacement straws. If outside the US, try 1-847-439-7821.

Chinh Do

I occasionally blog about programming (.NET, Node.js, Java, PowerShell, React, Angular, JavaScript, etc), gadgets, etc. Follow me on Twitter for tips on those same topics. You can also find me on GitHub. See About for more info.

View Comments

  • Hi Cres mayor: Glad this helps. I am not sure if there's an email address to order. You may want to give them a call. I would guess that calling them is the only way to order. Chinh

  • Hi Chinh, I tried calling the number posted above but the same was incorrect. Would you know if there is any new number?

  • I ordered 5 today, and the total price was only $8 (including $3 shipping)! When you call, you will need a model # I don't have it so I went online and got one that was similar.
    Thank you!

  • Just an FYI. I just tried to call and they are completely out of stock and not expecting any for 3 weeks. They don't take backorders so you have to call back. Bummer.

  • THANK you!!!! Just called the number and order all the replacements for less than 1 on ebay

    • Chris: That's great. Never would have thought my most popular blog post would be about kid sippy cups. :-)

  • Thanks for the info! I called the number today, but unfortunately, they are out of the straw parts as of 8/15/13. The representative said that they'll have it back in stock in about 4 weeks. I'll give them a call next month. Also, be sure to have the product model number available (I had to look mine up on Amazon.com). Thanks again!

  • Thanks for this info, however I an in Australia and this number does not connect can u provide the full international number that I would be able to call.

    Thanks Debra

Share
Published by
Chinh Do

Recent Posts

How to switch to a different Kubernetes context or namespace?

To list available contexts: kubectl config get-contexts To show the current context: kubectl config current-context…

2 years ago

How to ssh into Kubernetes pod

kubectl exec -it <podname> -- sh To get a list of running pods in the…

2 years ago

How to Create a Soft Symbolic Link (symlink) in Unix/Linux

# Create a soft symbolic link from /mnt/original (file or folder) to ~/link ln -s…

4 years ago

How to Configure Git Username and Email Address

git config --global user.name "<your name>" git config --global user.email "<youremail@somewhere.com>" Related Commands Show current…

4 years ago

Getting the Last Monday for Any Month with TypeScript/JavaScript

TypeScript/JavaScript function getLastMonday(d: Date) { let d1 = new Date(d.getFullYear(), d.getMonth() + 1, 0); let…

5 years ago

How to View Raw SMTP Email Headers in Outlook

I had to do some SMTP relay troubleshooting and it wasn't obvious how to view…

5 years ago