PHPackages                             hsntngr/laravel-jetmail - 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. hsntngr/laravel-jetmail

ActiveLibrary[Mail &amp; Notifications](/categories/mail)

hsntngr/laravel-jetmail
=======================

Laravel ile jetmail üzerinden mail gönderimi

v1.2(6y ago)04MITPHPCI failing

Since Feb 7Pushed 6y ago1 watchersCompare

[ Source](https://github.com/hsntngr/laravel-jetmail)[ Packagist](https://packagist.org/packages/hsntngr/laravel-jetmail)[ RSS](/packages/hsntngr-laravel-jetmail/feed)WikiDiscussions master Synced 2d ago

READMEChangelog (3)Dependencies (2)Versions (4)Used By (0)

laravel-jetmail
===============

[](#laravel-jetmail)

Laravel ile jetmail apisi üzerinden mail gönderin.

```
JetMail::to('test@example.com')
    ->send(new Welcome('Teoman'));
```

Kurulum
=======

[](#kurulum)

Laravel 5.6 ve öncesi sürümler için `config/app.php` dosyasında providers bölümü içine aşağıda jet mail service provider sınıfını ekleyin.

```
'providers' => [
   //...
   Hsntngr\JetMail\JetMailServiceProvider::class,
   //...
]
```

Sonrasında config dosyasını publish edin.

```
php artisan vendor:publish --provider="Hsntngr\JetMail\JetMailServiceProvider" --tag=config
```

Api bilgilerinizi `config/jetmail.php` içerisinde düzenleyin.

```
'from' => [
    'address' => 'laravel@posta.jetmail.com.tr',
    'name' => 'Laravel',
],

'auth' => [
    'token' => 'jetmailtarafındanverilentoken',
    'username' => 'hsntngr'
],
```

Kullanım
========

[](#kullanım)

Bu kütüphaneyi kullanarak artisan komutu jetmail oluşturabilir ve gönderebileceğiniz gibi, laravelin kendi mail yapısı oluşturduğunuz mailleri de gönderebilirbisiniz.

`make:jetmail` artisan komutunu kullanarak JetMail oluşturabilirsiniz. Oluşturulan mailler `app/Mail` dizini altında yer almaktadır.

```
php artisan make:jetmail Welcome
```

Oluşturulan mailin `build` metodunu kullanarak mail bilgilerini girebilirsiniz.

```
public function build()
   {
      return $this
          ->replyTo('test@example.com')
          ->subject('Hoşgeldin ' . $this->user)
          ->view('email.welcome');
   }
```

Daha sonra oluşturduğunuz bu mesajları JetMail facadesini kullanarak gönderebilirsiniz.

```
use App\Mail\Welcome;
use Hsntngr\JetMail\Facade\JetMail;

JetMail::send(new Welcome('Teoman'))
```

Alıcı parametresi build metodu içerisinde düzenlenmek zorunda değildir. JetMail facadesi üzerinden düzenlenebilir. Mail içerisinde girilen numara varsa bu numara da alıcılar arasına dahil edilir.

```
JetMail::to('test@example.com')
    ->send(new Welcome('Teoman'))
```

Mail göndermek için JetMail sınıfı oluşturmak zorunlu değildir. Laravel ile oluşturduğunuz mailleri jet mail olarak gönderebilirsiniz.

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 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 ~4 days

Total

3

Last Release

2277d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/489114a5dba3dcaebb2b5c7c146a484e519890d0421e5826b71319694e5348c2?d=identicon)[hsntngr](/maintainers/hsntngr)

---

Top Contributors

[![teomanofficial](https://avatars.githubusercontent.com/u/46353718?v=4)](https://github.com/teomanofficial "teomanofficial (1 commits)")

### Embed Badge

![Health badge](/badges/hsntngr-laravel-jetmail/health.svg)

```
[![Health](https://phpackages.com/badges/hsntngr-laravel-jetmail/health.svg)](https://phpackages.com/packages/hsntngr-laravel-jetmail)
```

###  Alternatives

[spatie/laravel-failed-job-monitor

Get notified when a queued job fails

1.0k2.6M4](/packages/spatie-laravel-failed-job-monitor)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[laravel-notification-channels/apn

Apple APN Push Notification Channel

2021.9M4](/packages/laravel-notification-channels-apn)[laravel-notification-channels/microsoft-teams

A Laravel Notification Channel for Microsoft Teams

1603.0M7](/packages/laravel-notification-channels-microsoft-teams)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[illuminate/mail

The Illuminate Mail package.

5910.1M391](/packages/illuminate-mail)

PHPackages © 2026

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