PHPackages                             tparcina/qsendgridbundle - 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. tparcina/qsendgridbundle

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

tparcina/qsendgridbundle
========================

Symfony bundle implementation of QSendgrid mailer service

1.1.1(4y ago)04PHP

Since Jul 10Pushed 4y agoCompare

[ Source](https://github.com/tparcina/QSendGridBundle)[ Packagist](https://packagist.org/packages/tparcina/qsendgridbundle)[ RSS](/packages/tparcina-qsendgridbundle/feed)WikiDiscussions master Synced yesterday

READMEChangelog (1)Dependencies (1)Versions (8)Used By (0)

QSendgridBundle
===============

[](#qsendgridbundle)

Symfony bundle implementation of QSendgrid mailer service.

Prerequisites
-------------

[](#prerequisites)

You will need to provide:

- Sendgrid API key, which can be created in [Sendgrid user interface](https://app.sendgrid.com/settings/api_keys)
- No Reply email address

> Key example: **SG.QDzWlz\_gShWMVi8svP...**

Installing
----------

[](#installing)

Install QSendgridBundle with composer:

```
composer require q-alliance/qsendgridbundle

```

Setup
-----

[](#setup)

#### Update `AppKernel.php`

[](#update-appkernelphp)

```
$bundles = [
	...
    new QAlliance\QSendgridBundle\QAllianceQSendgridBundle(),
];

```

#### Update `config.yml`

[](#update-configyml)

```
# QSendgrid Configuration
q_alliance_q_sendgrid:
    no_reply_email: NO_REPLY_EMAIL
    sendgrid_api_key: SENDGRID_API_KEY

```

Basic usage
-----------

[](#basic-usage)

#### Get QSendgrid mailer service from controller and send simple email:

[](#get-qsendgrid-mailer-service-from-controller-and-send-simple-email)

```
$qs = $this->get('qalliance.qsendgrid');

$result = $qs->send('to@example.com', 'My Subject', 'This is a QSendgrid test email.');
```

#### Sending html email with attachments:

[](#sending-html-email-with-attachments)

```
$attachmentUrls = [
	'./assets/attachments/sample1.jpg',
	'./assets/attachments/sample2.jpg'
];

$qs = $this->get('qalliance.qsendgrid');

$result = $qs->send('to@example.com', 'My Subject', 'This is a QSendgrid test email with attachments.', $attachmentUrls);
```

#### Add fromName as last parameter (optional):

[](#add-fromname-as-last-parameter-optional)

```
$qs = $this->get('qalliance.qsendgrid');

$result = $qs->send('to@example.com', 'My Subject', 'This is a QSendgrid test email.', null, 'From Name');
```

#### Sending email with html and plain text content:

[](#sending-email-with-html-and-plain-text-content)

```
$qs = $this->get('qalliance.qsendgrid');

$result = $qs->sendWithTextPlain('to@example.com', 'My Subject', 'This is a QSendgrid test email with plain text.', 'This is a QSendgrid test email with plain text', null, 'From Name');
```

Authors
-------

[](#authors)

- *Vicko Franic* - [Github](https://github.com/vickofranic)

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity68

Established project with proven stability

 Bus Factor1

Top contributor holds 100% 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

Every ~255 days

Recently: every ~382 days

Total

7

Last Release

1752d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/a96b1dbc902b68e0ac3d4ab0a490ac10a90300cfd5a124d8255191c4104ce4df?d=identicon)[tomislav.parcina](/maintainers/tomislav.parcina)

---

Top Contributors

[![VickoFranic](https://avatars.githubusercontent.com/u/9055038?v=4)](https://github.com/VickoFranic "VickoFranic (3 commits)")

---

Tags

qsendgrid bundle

### Embed Badge

![Health badge](/badges/tparcina-qsendgridbundle/health.svg)

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

###  Alternatives

[maize-tech/laravel-email-domain-rule

Laravel Email Domain Rule

612.0k](/packages/maize-tech-laravel-email-domain-rule)[sarfraznawaz2005/noty

Laravel package to incorporate noty flash notifications into laravel.

324.5k](/packages/sarfraznawaz2005-noty)

PHPackages © 2026

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