PHPackages                             kijho/kijho-mailer - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. kijho/kijho-mailer

ActiveSymfony-bundle[Mail &amp; Notifications](/categories/mail)

kijho/kijho-mailer
==================

1.0.0(9y ago)0318MITPHPPHP &gt;=5.3.9

Since Aug 17Pushed 6y ago3 watchersCompare

[ Source](https://github.com/KijhoTechnologies/kijho-mailer)[ Packagist](https://packagist.org/packages/kijho/kijho-mailer)[ RSS](/packages/kijho-kijho-mailer/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (6)Versions (3)Used By (0)

Instalación
===========

[](#instalación)

### composer.json

[](#composerjson)

Colocar esta linea en el archivo composer.json del proyecto:

```
composer require kijho/kijho-mailer 1.0.0
```

Es necesario tener instalado:

```
"fkr/cssurlrewrite-bundle": "*"
```

### AppKernel.php

[](#appkernelphp)

Colocar la siguiente linea en el archivo AppKernel para inicializar el Bundle:

```
new Kijho\MailerBundle\KijhoMailerBundle()
```

### routing.yml

[](#routingyml)

Colocar la siguiente ruta en el archivo routing.yml del proyecto:

```
kijho_mailer:
    resource: "@KijhoMailerBundle/Resources/config/routing.yml"
    prefix:   /{_locale}/kijhoMailer
```

### config.yml

[](#configyml)

Habilitar la configuración del lenguaje en el archivo config.yml colocando el lenguaje por defecto para el vendor. De momento los lenguajes disponibles son ingles y español (en, es)

```
framework:
    translator:      { fallbacks: [en] }
```

Kijho Mailer requiere el vendor de assets, una vez instalado colocar el nombre del bundle en los bundles que usan assets:

```
assetic:
    debug:          "%kernel.debug%"
    use_controller: false
    bundles:        [AcmeDemoBundle, KijhoMailerBundle]
```

Poner en el archivo config.yml las configuraciones propias del vendor:

```
# Twig Configuration
twig:
    globals:
        email_manager: "@email_manager"

kijho_mailer:
    entity_directories: ['%kernel.root_dir%/../src/Acme/DemoBundle/Entity/']
    entity_namespace: 'Acme\DemoBundle\Entity'
    storage:
        layout:         'Kijho\MailerBundle\Entity\EmailLayout'
        template_group: 'Kijho\MailerBundle\Entity\EmailTemplateGroup'
        template:       'Kijho\MailerBundle\Entity\EmailTemplate'
        settings:       'Kijho\MailerBundle\Entity\EmailSettings'
        email:          'Kijho\MailerBundle\Entity\Email'
        email_event:    'Kijho\MailerBundle\Entity\EmailEvent'
```

Si quiere agregar un plugin que le permita tener control sobre que imagenes usar en el editor tinymce

```
# Twig Configuration
twig:
    globals:
        ....
        external_filemanager_path: 'path to the plugin'
        external_plugins: '.js file'

```

Instanciar las siguientes extensiones de twig en la seccion de servicios:

```
services:
    twig.extension.evaluate:
      class: Kijho\MailerBundle\Twig\Extension\EvaluateExtension
      tags:
          - { name: twig.extension }
```

Asegurarse de configurar los parametros del swiftmailer, los parametros van en el archivo parameters.yml:

```
swiftmailer:
    transport: "%mailer_transport%"
    host:      "%mailer_host%"
    username:  "%mailer_user%"
    password:  "%mailer_password%"
    spool:     { type: memory }
```

#### composer update

[](#composer-update)

Ejecute en su proyecto el comando ```
composer update
```

#### doctrine schema update

[](#doctrine-schema-update)

Ejecute en su proyecto el comando ```
php app/console d:s:u --force
```

#### Enlace

[](#enlace)

Ahora para acceder a las funcionalidades del vendor instalado, coloque en cualquier parte de su proyecto un enlace con la ruta: ```
{{path('kijho_mailer_homepage')}}
```

&lt;script&gt; $( function() { $("PRE").prettyPre(); } ); &lt;/script&gt;

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 91.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

3604d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/5c056383456205b1606cfe987cef64e53611eef5ae1a5f08a70f5b2601cf4184?d=identicon)[kijho-technologies](/maintainers/kijho-technologies)

---

Top Contributors

[![cesar-giraldo](https://avatars.githubusercontent.com/u/12103527?v=4)](https://github.com/cesar-giraldo "cesar-giraldo (84 commits)")[![frcho](https://avatars.githubusercontent.com/u/2415594?v=4)](https://github.com/frcho "frcho (8 commits)")

### Embed Badge

![Health badge](/badges/kijho-kijho-mailer/health.svg)

```
[![Health](https://phpackages.com/badges/kijho-kijho-mailer/health.svg)](https://phpackages.com/packages/kijho-kijho-mailer)
```

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k17.5M378](/packages/easycorp-easyadmin-bundle)[rcsofttech/audit-trail-bundle

Enterprise-grade, high-performance Symfony audit trail bundle. Automatically track Doctrine entity changes with split-phase architecture, multiple transports (HTTP, Queue, Doctrine), and sensitive data masking.

1175.2k](/packages/rcsofttech-audit-trail-bundle)[sulu/sulu

Core framework that implements the functionality of the Sulu content management system

1.3k1.4M196](/packages/sulu-sulu)[2lenet/crudit-bundle

The easy like Crud'it Bundle.

1615.6k12](/packages/2lenet-crudit-bundle)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9417.2k55](/packages/open-dxp-opendxp)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
