> ## Documentation Index
> Fetch the complete documentation index at: https://help.sqidgeon.uk/llms.txt
> Use this file to discover all available pages before exploring further.

# Pterodactyl Email Issues

### Email not sending

###### View failed jobs

`php artisan queue:failed`

***

###### Manually Process the jobs

`php arstain queue:work`

***

###### Verify pterodactyl worker is installed

`sudo systemctl status pteroq.service`

***

###### Make pterodactyl worker if it does not exist

Create a file called pteroq.service in /etc/systemd/system with the contents below.

````# /etc/systemd/system/pteroq.service theme={null}
# Pterodactyl Queue Worker File
# ----------------------------------

[Unit]
Description=Pterodactyl Queue Worker
After=redis-server.service

[Service]
# On some systems the user and group might be different.
# Some systems use `apache` or `nginx` as the user and group.
User=www-data
Group=www-data
Restart=always
ExecStart=/usr/bin/php /var/www/pterodactyl/artisan queue:work --queue=high,standard,low --sleep=3 --tries=3
StartLimitInterval=180
StartLimitBurst=30
RestartSec=5s

[Install]
WantedBy=multi-user.target```
````
