mykind Organic's Mens Multi

$51.99
2 sold
Quantity
  • Description
  • Label Directions
  • Supplement Facts
  • How It Works

Finally, there’s a whole food multi from real, nutritious foods that’s Certified USDA Organic, Non-GMO Project Verified and is specifically formulated for the needs of men—mykind Organics Men’s Multi. Made from over 30 organic powdered fruits, vegetables and herbs, mykind Organics Men’s Multi is designed to promote sustained energy while supporting a healthy metabolism and heart.† Men’s Multi offers a multitude of vitamins and minerals, including targeted levels of folate for prostate health and targeted levels of chromium for a healthy metabolism.* For extra energy, Men’s Multi delivers 500% of the Daily Value of vitamin B-12 in Methylcobalamin form—a highly absorbable, active, natural form of B-12, like the B-12 in the body.† Men’s Multi is made from real whole food, including organic fruits, veggies and herbs such as lemons, apples, basil, red cabbage, celery, tomatoes and many other real organic foods to give men the nutritional “punch” they need in a natural form—and all of them are Certified Vegan, Certified USDA Organic and Non-GMO Project Verified.

  • Promotes sustained energy*
  • Supports a healthy metabolism*
  • Supports heart health*
  • Supports prostate health*
  • No added iron
  • Organic clean tablets—no magnesium stearate
  • USDA Organic
  • Non GMO Project Verified
  • Certified Vegan
  • NSF Gluten Free Certified
  • Star-K Kosher Certified
  • Carbon Neutral Certified
  • Dairy Free
  • Soy Free
Adults take 2 tablets daily with food. Not intended for children.
Vitamin A(as Beta Carotene from Organic Food Blend)1,170 mcg 130%
Vitamin C(from Organic Food Blend)100 mg 111%
Vitamin D(D3 from Lichen)25 mcg (1,000 IU) 125%
Vitamin E(from Organic Food Blend)19.5 mg 130%
Vitamin K(from Saccharomyces cerevisiae)120 mcg 100%
Thiamin(Vitamin B1 from Organic Food Blend)1.56 mg 130%
Riboflavin(Vitamin B2 from Organic Food Blend)1.95 mg 150%
Niacin(from Organic Food Blend)18.4 mg 115%
Vitamin B6(from Organic Food Blend)9.35 mg 550%
Folate(from Organic Food Blend)400 mcg DFE 100%
Vitamin B12 (Methylcobalamin from Saccharomyces cerevisiae)(Methylcobalamin from Saccharomyces cerevisiae)12 mcg 500%
Biotin(from Organic Food Blend)135 mcg 450%
Pantothenic Acid(from Organic Food Blend)7 mg 140%
Iodine(from Organic Food Blend)150 mcg 100%
Zinc(from Organic Food Blend)11 mg 100%
Selenium(from Organic Food Blend)71.5 mcg 130%
Manganese(from Organic Food Blend)0.8 mg 35%
Chromium(from Organic Food Blend)70 mcg 200%
Vitamin K2(as menaquinone-7)20 mcg +
Organic Food BlendOrganic Sesbania grandiflora (leaf), Organic Apple (fruit), Organic Emblic (Amla, Pyllanthus emblica)(fruit) Extract, Organic Sea Kelp, Organic Psidium guajava (Guava fruit & leaf), Organic Mushroom (Agaricus bisporus), Organic Ocimum sanctum (Holy Basil leaf), Organic Annatto (fruit & seed), Organic Lemon (peel), Organic Moringa oleifera (Moringa leaf), Organic Strawberry (fruit), Organic Cherry (fruit), Organic Blackberry (fruit), Organic Beet (root), Organic Broccoli (stalk & flower), Organic Carrot (root), Organic Spinach (leaf), Organic Blueberry (fruit), Organic Raspberry (fruit), Organic Tomato (fruit), Organic Green Bell Pepper (fruit), Organic Brussels Sprout (leaf), Organic Ginger (root), Organic Garlic (bulb), Organic Green Onion (bulb), Organic Parsley (leaf), Organic Cauliflower (flower & stem), Organic Red Cabbage (leaf), Organic Asparagus (flower & stem), Organic Celery (stalk), Organic Cucumber (gourd), Organic Kale (leaf)818 mg +
placeholder
Customer Reviews

Here are what our customers say.

Write a Review
Customer Reviews
Wow you reached the bottom
Newest
Most liked
Highest ratings
Lowest ratings
×
class SpzCustomFileUpload extends SPZ.BaseElement { constructor(element) { super(element); this.uploadCount_ = 0; this.fileList_ = []; } buildCallback() { this.action = SPZServices.actionServiceForDoc(this.element); this.registerAction('upload', (data) => { this.handleFileUpload_(data.event?.detail?.data || []); }); this.registerAction('delete', (data) => { this.handleFileDelete_(data?.args?.data); }); this.registerAction('preview', (data) => { this.handleFilePreview_(data?.args?.data); }); this.registerAction('limit', (data) => { this.handleFileLimit_(); }); this.registerAction('sizeLimit', (data) => { this.handleFileSizeLimit_(); }); } isLayoutSupported(layout) { return layout == SPZCore.Layout.LOGIC; } setData_(count, file) { this.uploadCount_ = count; this.fileList_ = file; } handleFileUpload_(data) { data.forEach(i => { if(this.fileList_.some(j => j.url === i.url)) return; this.fileList_.push(i); }) this.uploadCount_++; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileUpload", { count: this.uploadCount_, files: this.fileList_}); if(this.fileList_.length >= 5){ document.querySelector('#review_upload').style.display = 'none'; } if(this.fileList_.length > 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '8px'; } } handleFileDelete_(index) { this.fileList_.splice(index, 1); this.uploadCount_--; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleFileDelete", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; if(this.fileList_?.length === 0){ document.querySelector('.apps-reviews-write-anonymous-box').style.marginTop = '132px'; } } handleFilePreview_(index) { const finalPreviewData = this.fileList_[index]; const filePreviewModal = document.getElementById('filePreviewModal'); const fullScreenVideo = document.getElementById('fullScreenVideo'); const fullScreenImage = document.getElementById('fullScreenImage'); const previewModalClose = document.getElementById('previewModalClose'); const previewLoading = document.getElementById('previewLoading'); filePreviewModal.style.display = 'block'; previewLoading.style.display = 'flex'; if(finalPreviewData?.type === 'video'){ const media = this.mediaParse_(this.fileList_[index]?.url); fullScreenVideo.addEventListener('canplaythrough', function() { previewLoading.style.display = 'none'; }); fullScreenImage.src = ''; fullScreenImage.style.display = 'none'; fullScreenVideo.style.display = 'block'; fullScreenVideo.src = media.mp4 || ''; } else { fullScreenImage.onload = function() { previewLoading.style.display = 'none'; }; fullScreenVideo.src = ''; fullScreenVideo.style.display = 'none'; fullScreenImage.style.display = 'block'; fullScreenImage.src = finalPreviewData.url; } previewModalClose.addEventListener('click', function() { filePreviewModal.style.display = 'none'; }); } handleFileLimit_() { alert(window.AppReviewsLocale.comment_file_limit || 'please do not upload files more than 5'); this.triggerEvent_("handleFileLimit"); } handleFileSizeLimit_() { alert(window.AppReviewsLocale.comment_file_size_limit || 'File size does not exceed 10M'); } clear(){ this.fileList_ = []; this.uploadCount_ = 0; sessionStorage.setItem('fileList', JSON.stringify(this.fileList_)); this.triggerEvent_("handleClear", { count: this.uploadCount_, files: this.fileList_}); document.querySelector('#review_upload').style.display = 'block'; } mediaParse_(url) { var result = {}; try { url.replace(/[?&]+([^=&]+)=([^&]*)/gi, function (str, key, value) { try { result[key] = decodeURIComponent(value); } catch (e) { result[key] = value; } }); result.preview_image = url.split('?')[0]; } catch (e) {}; return result; } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, name, data); this.action.trigger(this.element, name, event); } } SPZ.defineElement('spz-custom-file-upload', SpzCustomFileUpload);
The review would not show in product details on storefront since it does not support to.