문제

I want to send an Email through a cron job for every 24hrs once.In that email need to mention all the abandoned cart details. I am new to Cron jobs so can you please explain it. Thanks in advance

도움이 되었습니까?

해결책

create new module Vendor_Module

create a new file crontab.xml at this location:

app/code/Vendor/Module/etc/

and insert below code

enter image description here

create new file Customemail.php at the location:

app/code/Vendor/Module/Cron/

and code as below

<?php

namespace Vendor\Module\Cron;

class Customemail
{

    public function execute()
    {

        //send custom mail

    }
}

try this solution

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 magento.stackexchange
scroll top