Вопрос

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