firstcommit

This commit is contained in:
2025-08-17 16:23:14 +05:45
commit 76bf4c0a18
2648 changed files with 362795 additions and 0 deletions

View File

@@ -0,0 +1,63 @@
<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Mail\Mailables\Content;
use Illuminate\Mail\Mailables\Envelope;
use Illuminate\Queue\SerializesModels;
class NewBlogNotificationMail extends Mailable
{
use Queueable, SerializesModels;
/**
* Create a new message instance.
*/
protected $blog;
public function __construct($blog)
{
$this->blog = $blog;
}
/**
* Get the message envelope.
*/
public function envelope(): Envelope
{
return new Envelope(
subject: 'New Blog Notification Mail',
);
}
/**
* Get the message content definition.
*/
public function content(): Content
{
// return new Content(
// view: 'view.name',
// );
return new Content(
view: 'mail.new_blog_notification',
with: [
'blogTitle' => $this->blog->title,
'blogContent' => $this->blog->content,
]
);
}
/**
* Get the attachments for the message.
*
* @return array<int, \Illuminate\Mail\Mailables\Attachment>
*/
public function attachments(): array
{
return [];
}
}

62
app/Mail/ReplyToMail.php Normal file
View File

@@ -0,0 +1,62 @@
<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Mail\Mailables\Content;
use Illuminate\Mail\Mailables\Envelope;
use Illuminate\Queue\SerializesModels;
class ReplyToMail extends Mailable
{
use Queueable, SerializesModels;
/**
* Create a new message instance.
*/
private $content;
private $siteLogo;
public function __construct($content, $siteLogo)
{
$this->content = $content;
$this->siteLogo = $siteLogo;
}
/**
* Get the message envelope.
*/
public function envelope(): Envelope
{
return new Envelope(
subject: 'Reply To Mail',
);
}
/**
* Get the message content definition.
*/
public function content(): Content
{
return new Content(
view: 'mail.reply_to_mail',
with: [
'content' => $this->content,
'siteLogo' => $this->siteLogo,
]
);
}
/**
* Get the attachments for the message.
*
* @return array<int, \Illuminate\Mail\Mailables\Attachment>
*/
public function attachments(): array
{
return [];
}
}

View File

@@ -0,0 +1,66 @@
<?php
namespace App\Mail;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Mail\Mailable;
use Illuminate\Mail\Mailables\Content;
use Illuminate\Mail\Mailables\Envelope;
use Illuminate\Queue\SerializesModels;
class SendSubscriptionMail extends Mailable
{
use Queueable, SerializesModels;
/**
* Create a new message instance.
*/
private $citizenEmail;
private $siteLogo;
private $thumbImage;
public function __construct($citizenEmail, $siteLogo, $thumbImage)
{
$this->citizenEmail = $citizenEmail;
$this->siteLogo = $siteLogo;
$this->thumbImage = $thumbImage;
}
/**
* Get the message envelope.
*/
public function envelope(): Envelope
{
return new Envelope(
subject: 'Send Subscription Mail',
);
}
/**
* Get the message content definition.
*/
public function content(): Content
{
return new Content(
view: 'mail.send_subscription_mail',
with: [
'citizenEmail' => $this->citizenEmail,
'siteLogo' => $this->siteLogo,
'thumbImage' => $this->thumbImage,
]
);
}
/**
* Get the attachments for the message.
*
* @return array<int, \Illuminate\Mail\Mailables\Attachment>
*/
public function attachments(): array
{
return [];
}
}