Enviar email no phpmailer usando chaves DKIM

Currents Estou usando o phpmailer para enviar e-mails. agora como é possível enviar email no phpmailer com chaves DKIM

eu procuro no arquivo de classe phpmailer e encontrei o código abaixo

    /**
     * DKIM selector.
     * @type string
     */
    public $DKIM_selector = '';

    /**
     * DKIM Identity.
     * Usually the email address used as the source of the email
     * @type string
     */
    public $DKIM_identity = '';

    /**
     * DKIM passphrase.
     * Used if your key is encrypted.
     * @type string
     */
    public $DKIM_passphrase = '';

    /**
     * DKIM signing domain name.
     * @example 'example.com'
     * @type string
     */
    public $DKIM_domain = '';

    /**
     * DKIM private key file path.
     * @type string
     */
    public $DKIM_private = '';

Posso saber como é possível. por favor me ajude

questionAnswers(3)

yourAnswerToTheQuestion