Git Product home page Git Product logo

Comments (3)

iAchilles avatar iAchilles commented on August 30, 2024 3

When we need to set Custom Headers we have to do it in the Mailable classes

class Email extends Mailable
{

    /**
     * @var array
     */
    private $config;


    /**
     * Email constructor.
     *
     * @param array $config
     */
    public function __construct(array $config)
    {
        $this->config = $config;
    }


    public function build()
    {

        // Set Custom Headers 
       $this->withSwiftMessage(function ($message)  {
             $headers = $message->getHeaders();
             $headers->addTextHeader('X-MJ-CustomID', 'uuid');
       });

        $this->subject($this->config[ 'subject' ]);

        if (isset($this->config[ 'from' ])) {
            $this->from($this->config[ 'from' ], $this->config[ 'name' ]);
        }

        if (isset($this->config[ 'attachment' ])) {
            $data = base64_decode($this->config[ 'attachment' ][ 'data' ]);
            $name = $this->config[ 'attachment' ][ 'name' ];
            $mime = $this->config[ 'attachment' ][ 'mime' ];
            $this->attachData($data, $name, [ 'mime' => $mime ]);
        }

        if (is_array($this->config[ 'content' ])) {
            $this->with($this->config[ 'content' ]);
        } else {
            $this->with('content', $this->config[ 'content' ]);
        }

        return $this->view($this->config[ 'template' ]);
    }
}

To send email we can use the following code:

        Mail::to($this->config[ 'destination' ])->send(new Email($this->config));

from laravel-mailjet.

iAchilles avatar iAchilles commented on August 30, 2024

Fixed

from laravel-mailjet.

Nightbr avatar Nightbr commented on August 30, 2024

@iAchilles can you explain how you solved this for others please

from laravel-mailjet.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.