Our business closing due to the expiration of our shop's contract with USPS,But we still have a large backlog of stamps in our warehouse.Before bidding goodbye, we have decided to hold a final liquidation sale.Limited time 60% OFF
Buy now
(function () { const TAG = "spz-custom-discount-popup-bxgy"; class SpzCustomPlacementPopup extends SPZ.BaseElement { constructor(element) { super(element); this.deviceTypeMap = { PD_PC_MOBILE: "PD_PC_MOBILE", PD_PC: "PD_PC", PD_MOBILE: "PD_MOBILE" }; this.reportEventMap = { PE_IMPRESSION: 'PE_IMPRESSION',//曝光事件 PE_CLICK: 'PE_CLICK',//点击事件 } this.popup_z_index = 1050; } static deferredMount() { return false; } buildCallback = () => { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback = () => { } // 节流处理 每5s内多次点击 算一次点击上报 throttleReport = this.win.SPZCore.Types.throttle( this.win, (data) => { this.reportData(data) }, 5000 ) // 上报数据 reportData = async(data) => { const reqBody = { placement_id: data.placement_id, event: data.event } this.xhr_.fetchJson(`/api/storefront/promotion/placement/data/report`, { method: "post", body: reqBody }).then((res)=>{ // todo ... }) } doRender_ = (data) => { const popupList = data.popupList || []; if(popupList.length){ // 内容配置 序列化字符转化 popupList.forEach(item => { item.parseConfig = JSON.parse(item.config); }) } return this.templates_ .findAndRenderTemplate(this.element, {popupList}) .then((el) => { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); this.element.appendChild(el); }).then(() =>{ popupList.forEach(item => { // buy x get y 弹窗渲染 this.showPopup(item); }) }) } showPopup = async(itemData) => { // 展示弹窗 符合展示条件的弹窗 const $lightbox_item = document.querySelector(`#popup_bxgy_${itemData.id}`); $lightbox_item && SPZ.whenApiDefined($lightbox_item).then((api)=> { const isPC = this.viewport_.getWidth() >= 768; const isMobile = this.viewport_.getWidth() < 768; const isMatchPCDevice = itemData.device === this.deviceTypeMap.PD_PC_MOBILE || itemData.device === this.deviceTypeMap.PD_PC; const isMatchMobileDevice = itemData.device == this.deviceTypeMap.PD_PC_MOBILE || itemData.device === this.deviceTypeMap.PD_MOBILE; if((isPC && isMatchPCDevice) || (isMobile && isMatchMobileDevice)) { // 根据推送时间 延迟展示弹窗 setTimeout(() => { $lightbox_item.style.zIndex = this.popup_z_index; this.popup_z_index ++; api.open(); }, itemData.delay_seconds * 1000); } }) } setupAction_ = () => { this.registerAction('handleTrack', async(invocation) => { // 如果是主题编辑器则不用处理 if(window.top !== window.self) { return; } const data = invocation.args; const event = data.event; // 点击上报 节流处理 if(event === this.reportEventMap.PE_CLICK) { await this.throttleReport(data); } else { this.reportData(data); } }); this.registerAction('handleLinkto', (invocation) => { const url = invocation.args.url; const isNewOpen = invocation.args.isNewOpen; const target = isNewOpen ? '_blank' : '_self'; if(url) { window.open(url, target); } }); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomPlacementPopup) })() (function () { const TAG = "spz-custom-discount-placement"; class SpzCustomDiscountPlacement extends SPZ.BaseElement { constructor(element) { super(element); this.placementTypeMap = { PTT_POPUP: "PTT_POPUP", PTT_BANNER: "PTT_BANNER" }; this.placementTemplateMap = { PT_POPUP_BUY_X_GET_Y: "PT_POPUP_BUY_X_GET_Y", PT_BANNER_BUY_X_GET_Y: "PT_BANNER_BUY_X_GET_Y" }; this.progressMap = { PROGRESS_ONGOING: "PROGRESS_ONGOING", PROGRESS_NOT_STARTED: "PROGRESS_NOT_STARTED", PROGRESS_FINISHED: "PROGRESS_FINISHED", PROGRESS_PAUSED: "PROGRESS_PAUSED" }; } static deferredMount() { return false; } buildCallback = () => { this.action_ = SPZServices.actionServiceForDoc(this.element); this.templates_ = SPZServices.templatesForDoc(this.element); this.xhr_ = SPZServices.xhrFor(this.win); this.setupAction_(); this.viewport_ = this.getViewport(); } mountCallback = () => { this.handlePlacement(); } // 上报数据 reportData = async(data) => { const reqBody = { placement_id: data.placement_id, event: data.event } const url = `/api/storefront/promotion/placement/data/report`; this.xhr_.fetchJson(url, { method: "post", body: reqBody }).then((res)=>{ // todo ... }) } // 资源位数据获取 getplacementList = async() => { const reqBody = { page_id: window.SHOPLAZZA.meta.page.template_type } const url = `/api/storefront/promotion/placement/list` const data = await this.xhr_.fetchJson(url, { method: "post", body: reqBody }) return data; } handlePlacement = async() => { const res = await this.getplacementList(); const BXGYPopupList = res.list.filter(item => (item.placement_type == this.placementTypeMap.PTT_POPUP && item.placement_template == this.placementTemplateMap.PT_POPUP_BUY_X_GET_Y)); if(BXGYPopupList.length) { const $spz_custom_popup_bxgy = document.querySelector('#spz_custom_popup_bxgy'); SPZ.whenApiDefined($spz_custom_popup_bxgy).then((api)=> { api.doRender_({popupList: BXGYPopupList}); }) } } doRender_ = (data) => { const renderData = data || {}; return this.templates_ .findAndRenderTemplate(this.element, renderData) .then((el) => { const children = this.element.querySelector('*:not(template)'); children && SPZCore.Dom.removeElement(children); this.element.appendChild(el); }) } setupAction_ = () => { this.registerAction('handleTrack', (invocation) => { const data = invocation.args; this.reportData(data) }); } triggerEvent_(name, data) { const event = SPZUtils.Event.create(this.win, `${ TAG }.${ name }`, data || {}); this.action_.trigger(this.element, name, event); } isLayoutSupported(layout) { return layout == SPZCore.Layout.CONTAINER; } } SPZ.defineElement(TAG, SpzCustomDiscountPlacement) })()

Patrotic stamps

2025 US Flags Booklets / Rolls Forever First Class Postage Stamps

from $18.00 $78.00

2024 US Flags Booklets / Rolls Forever First Class Postage Stamps celebration stamps

from $18.00 $73.00

2023 US Flags / Freedom Booklets Rolls Forever First Class Postage Stamps

from $18.00 $73.00

2022 US Flags Forever First Class Postage Stamps

from $18.00 $65.00

2019 US Flags in Rolls / Booklets Forever First Class Postage Stamps

from $18.00 $65.00

2018 US Flags Forever First Class Postage Stamps

from $18.00 $65.00

2017 US Flags Forever First Class Postage Stamps Celebration stamps

from $18.00 $65.00

【Big Discount!】U.S Flag Stamp Collection

from $18.00

【Big Discount!】U.S Flag

from $122.00 $1,200.00

【Big Discount!】U.S Flag

from $102.00 $1,000.00

U.S. Flag 2025 Stamps, Sheet of 20

from $18.00 $63.00

2024 U.S. Flags Forever Stamps Booklets

from $18.00 $73.00

2025 US Flags Booklets / Rolls Forever First Class Postage Stamps

from $18.00 $78.00

2024 US Flags Booklets / Rolls Forever First Class Postage Stamps celebration stamps

from $18.00 $73.00

2023 US Flags / Freedom Booklets Rolls Forever First Class Postage Stamps

from $18.00 $73.00

2022 US Flags Forever First Class Postage Stamps

from $18.00 $65.00

2019 US Flags in Rolls / Booklets Forever First Class Postage Stamps

from $18.00 $65.00

2018 US Flags Forever First Class Postage Stamps

from $18.00 $65.00
View more

Flower&Wedding

Flowers from the Garden Forever Stamps

from $28.49 $73.00

Tulip Blossoms Forever Stamp

from $18.00 $63.00

2024 Garden Delights Stamps

from $18.00 $63.00

2016 US Botanical Art Forever First Class Postage Stamps

from $18.00 $73.00

100PCS-Holiday Baubles 2011

from $18.00 $63.00

Sunflower Bouquet Stamps(Two Ounce)

from $18.00 $63.00

Snowy Beauty Stamps 2022

from $28.49 $73.00

U.S. 2019 Cactus Forever Stamps

from $28.49 $73.00

Flowers from the Garden Forever Stamps

from $28.49 $73.00

Tulip Blossoms Forever Stamp

from $18.00 $63.00

2024 Garden Delights Stamps

from $18.00 $63.00

2016 US Botanical Art Forever First Class Postage Stamps

from $18.00 $73.00

100PCS-Holiday Baubles 2011

from $18.00 $63.00

Sunflower Bouquet Stamps(Two Ounce)

from $18.00 $63.00
View more

Animal stamps

2014 US Imperforate Songbirds Forever First Class Postage Stamps

from $18.00 $73.00

2020 US 'Winter Scenes' Forever Postage Stamps

from $18.00 $73.00

2018 US First-Class Forever Stamp - Birds in Winter

from $18.00 $73.00

2016 US First-Class Forever Stamp - Songbirds in Snow

from $18.00 $73.00

Bugs Bunny Stamps | 80th Anniversary Stamps

from $18.00 $63.00

Winter Scenes Forever Stamps

from $18.00 $63.00

Sesame Street Forever Stamps 2019

from $18.00 $60.00

Pets Forever Stamps

from $18.00 $66.00

2014 US Imperforate Songbirds Forever First Class Postage Stamps

from $18.00 $73.00

2020 US 'Winter Scenes' Forever Postage Stamps

from $18.00 $73.00

2018 US First-Class Forever Stamp - Birds in Winter

from $18.00 $73.00

2016 US First-Class Forever Stamp - Songbirds in Snow

from $18.00 $73.00

Bugs Bunny Stamps | 80th Anniversary Stamps

from $18.00 $63.00

Winter Scenes Forever Stamps

from $18.00 $63.00
View more

Love/Wedding

2024 Wedding Blooms Stamps

from $18.00 $63.00

Barn Postcard Forever Postage Stamps 5 Sheets of 20 US Postal First Class American History Wedding Celebration Anniversary (100 Stamps)

from $18.00 $63.00

2023 Love Forever Stamps

from $18.00 $63.00

2017 First-Class Forever Stamp - Wedding Series: Celebration Boutonniere

from $18.00 $73.00

2020 US Made of Hearts Forever First-Class Postage Stamps Wedding

from $18.00 $73.00

2010 Love Flower Stamps

from $18.00 $66.00

2011 US Wedding CELEBRATE Forever Stamps

from $18.00 $73.00

2022 Love Forever Stamps

from $18.00 $63.00

2024 Wedding Blooms Stamps

from $18.00 $63.00

Barn Postcard Forever Postage Stamps 5 Sheets of 20 US Postal First Class American History Wedding Celebration Anniversary (100 Stamps)

from $18.00 $63.00

2023 Love Forever Stamps

from $18.00 $63.00

2017 First-Class Forever Stamp - Wedding Series: Celebration Boutonniere

from $18.00 $73.00

2020 US Made of Hearts Forever First-Class Postage Stamps Wedding

from $18.00 $73.00

2010 Love Flower Stamps

from $18.00 $66.00
View more

Christms Stamps

Sparkling Holidays Stamps 2018

from $18.00 $63.00

Snow Globes Stamps

from $18.00 $66.00

100PCS-Holiday Elves 2022

from $18.00 $63.00

2014 Rudolph the Red-Nosed Reindeer Forever Stamps

from $18.00 $63.00

Charlie Brown Christmas Forever Stamps 2015

from $18.00 $63.00

2020 US Christmas Holiday Delights Forever Postage Stamps

from $18.00 $73.00

A Visit From St. Nick Forever Stamps

from $18.00 $63.00

2021 US A Visit from St. Nick Forever Stamps

from $28.99 $73.00

Sparkling Holidays Stamps 2018

from $18.00 $63.00

Snow Globes Stamps

from $18.00 $66.00

100PCS-Holiday Elves 2022

from $18.00 $63.00

2014 Rudolph the Red-Nosed Reindeer Forever Stamps

from $18.00 $63.00

Charlie Brown Christmas Forever Stamps 2015

from $18.00 $63.00

2020 US Christmas Holiday Delights Forever Postage Stamps

from $18.00 $73.00
View more

Hot Sale

$10 Floral Geometry 5Books/20Pcs

from $18.00 $63.00

$2 Floral Geometry stamp

from $18.00 $50.00

$5 Floral Geometry 5Books/20Pcs

from $18.00 $63.00

100PCS-Contemporary Gingerbread Houses 2013

from $18.00 $63.00

100PCS-Day of the Dead 2021

from $18.00 $63.00

100PCS-Geometric Snowflakes 2015

from $18.00 $63.00

100PCS-Holiday Baubles 2011

from $18.00 $63.00

100PCS-Holiday Elves 2022

from $18.00 $63.00

$10 Floral Geometry 5Books/20Pcs

from $18.00 $63.00

$2 Floral Geometry stamp

from $18.00 $50.00

$5 Floral Geometry 5Books/20Pcs

from $18.00 $63.00

100PCS-Contemporary Gingerbread Houses 2013

from $18.00 $63.00
View more

Best Sellers

2025 US Flags Booklets / Rolls Forever First Class Postage Stamps

from $18.00 $78.00

2024 US Flags Booklets / Rolls Forever First Class Postage Stamps celebration stamps

from $18.00 $73.00

2023 US Flags / Freedom Booklets Rolls Forever First Class Postage Stamps

from $18.00 $73.00

2022 US Flags Forever First Class Postage Stamps

from $18.00 $65.00

2019 US Flags in Rolls / Booklets Forever First Class Postage Stamps

from $18.00 $65.00

2018 US Flags Forever First Class Postage Stamps

from $18.00 $65.00

2017 US Flags Forever First Class Postage Stamps Celebration stamps

from $18.00 $65.00

【Big Discount!】U.S Flag

from $122.00 $1,200.00

2025 US Flags Booklets / Rolls Forever First Class Postage Stamps

from $18.00 $78.00

2024 US Flags Booklets / Rolls Forever First Class Postage Stamps celebration stamps

from $18.00 $73.00

2023 US Flags / Freedom Booklets Rolls Forever First Class Postage Stamps

from $18.00 $73.00

2022 US Flags Forever First Class Postage Stamps

from $18.00 $65.00

2019 US Flags in Rolls / Booklets Forever First Class Postage Stamps

from $18.00 $65.00

2018 US Flags Forever First Class Postage Stamps

from $18.00 $65.00
View more

Customer reviews

4 Reviews
Nat******in

I have them too, the stamps came quickly, l recently used the 200 stamps l ordered andhad 200 stamps mailed around my Christmas time thank you and they all

$102.00
$1,000.00
Buy it
Dor******nd

have purchased stamps twice within the last three months, Both transactions werevery smooth and the stamps were as advertised. Very pleased and will purchase again.

$18.00
$66.00
Buy it
Ama******ra

I was also afraid of being cheated before purchasing because l need to use a very largeamount of stamps every year, so after comparing some l purchased a small portion

$18.00
$66.00
Buy it
Nat******in

I have now purchased around $10,000 in stamps with no issues or concerns at all. wasa bit skeptical for my first order since it was rather large and they were

$18.00
$66.00
Buy it
First Class Mail
All stamps are shipped via Free First Class and orders are processed in about 24 hours, with logistics taking about 3-7 business days
Payment security
Paypal payment, so there is no worry about payment issues.
Paypal
100% Protection of your property security
Free delivery worldwide
Short content about your store