Pipedream 워크플로를 사용하여 무작위로 Shopify 주문으로 프로모션 이메일을 보내는 방법
2770 단어 productivitytutorialnode
이 에피소드에서는 스토어에 앱을 추가하지 않고 Shopify 주문에서 프로모션 이메일을 생성하는 방법을 보여줍니다.
각 주문이 이메일에서 할인 코드를 트리거하는 기회를 제어할 수 있습니다. 또는 구매 후 이메일 메시지에 대해 이 임의 부분을 모두 제거할 수 있습니다.
워크플로에서 사용할 수 있는 난수 생성기 코드 단계는 다음과 같습니다.
export default defineComponent({
props: {
minimum: { type: 'string' },
maximum: { type: 'string' }
},
async run({ steps, $ }) {
const max = parseInt(this.maximum);
const min = parseInt(this.minimum);
return Math.floor(Math.random() * (max - min + 1) + min);
},
})
자세히 알아보고 연결하세요!
🔨 https://pipedream.com에서 구축 시작
📣 블로그 읽기https://pipedream.com/blog
💬 커뮤니티 가입https://pipedream.com/community
Reference
이 문제에 관하여(Pipedream 워크플로를 사용하여 무작위로 Shopify 주문으로 프로모션 이메일을 보내는 방법), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/pipedream_staff/how-to-send-promotion-emails-with-shopify-orders-at-random-with-a-pipedream-workflow-465a텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)