Pregunta

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

¿Fue útil?

Solución

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

Licenciado bajo: CC-BY-SA con atribución
No afiliado a magento.stackexchange
scroll top