Domain: amberpublishers.in
Server Adress: 86.38.243.169
privdayz.com
<!DOCTYPE html>
<html lang="en">
<head>
<?php include 'common/head.php'; ?>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<?php include 'common/header.php'; ?>
<main id="main">
<section class="breadcrumbs">
<div class="container">
<div class="d-flex justify-content-between align-items-center">
<h2 class="fw-bold">Publication Fees</h2>
<ol>
<li><a href="index.php">Home</a></li>
<li>Publication Fees</li>
</ol>
</div>
</div>
</section>
<section class="inner-page pt-4">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="fees-details">
<h3 class="section-title">Publication Fees Details</h3>
<p>Publication fee is charged to meet expenses like editorial work, peer review, composition, online hosting and archiving.</p>
<p>Authors can deposit fees by using QR Code or direct bank transfer.</p>
<ul>
<li>
<h3 class="section-title">Publication Fee:</h3>
<ul>
<li><strong>Indian Authors:</strong> Rs.750 (For One entire research paper)</li>
<li><strong>Foreign Authors:</strong> $20 (For One entire research paper)</li>
</ul>
</li>
</ul>
<div class="steps-process">
<h3 class="section-title">Payment Process</h3>
<div class="step">
<div class="step-circle">1</div>
<p>Submit your manuscript for review</p>
</div>
<div class="step">
<div class="step-circle">2</div>
<p>Receive acceptance notification</p>
</div>
<div class="step">
<div class="step-circle">3</div>
<p>Make payment using QR Code or bank transfer</p>
</div>
<div class="step">
<div class="step-circle">4</div>
<p>Upload payment screenshot and provide a message</p>
</div>
<div class="step">
<div class="step-circle">5</div>
<p>Payment verification and publication</p>
</div>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="bank-details">
<h3 class="section-title">Bank Details</h3>
<ul class="bank-details-list">
<li>
<p style=" margin-bottom: 1px;"><strong>Bank Name:</strong> CANARA BANK</p>
</li>
<li>
<p style=" margin-bottom: 1px;"><strong>Beneficiary Name:</strong> Mariyam Kazmi</p>
</li>
<li>
<p style=" margin-bottom: 1px;"><strong>Account Number:</strong> 5319101001132</p>
</li>
<li>
<p style=" margin-bottom: 1px;"><strong>IFSC Code:</strong> CNRB0005319</p>
</li>
</ul>
</div>
<div class="qr-code">
<h3 class="section-title">OR</h3>
<h3 class="section-title">Scan QR Code</h3>
<img src="./assets/img/qr_code.png" alt="QR Code">
</div>
</div>
<div class="col-lg-3">
<div class="upload-screenshot" style="margin-top: 0px;">
<h3 class="section-title">Upload Screenshot</h3>
<form action="#" method="post" enctype="multipart/form-data">
<div class="mb-3">
<label for="name" class="form-label">Paper ID</label>
<input type="text" class="form-control" id="name" name="name" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="mb-3">
<label for="formFile" class="form-label">Upload Payment Screenshot</label>
<input class="form-control" type="file" id="formFile" name="fileToUpload" required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Message</label>
<textarea class="form-control" name="message" id="message" cols="30" rows="5"></textarea>
</div>
<button type="submit" class="btn btn-outline-dark" name="submit">Submit</button>
</form>
<?php
require '../PhpHelper.php';
if (isset($_POST['submit'])) {
// Get the values from the form
$name = $_POST['name'];
$email = $_POST['email'];
$fileToUpload = $_FILES['fileToUpload']['tmp_name'];
$message = $_POST['message'];
// Recipient email and name
$recipientEmail = '[email protected]';
$recipientName = 'Syed Asghar';
// Email subject and body
$subject = 'Payment Screenshot';
$body = 'Name: ' . $name . '<br>Email: ' . $email . '<br>Message: ' . $message;
// Attempt to send the email
if (sendEmailWithAttachment($recipientEmail, $recipientName, $subject, $body, $fileToUpload, 'payment_screenshot.png')) {
// Email sent successfully
echo '<div class="alert alert-success mt-2">Email sent successfully! </div>';
} else {
// Failed to send email
echo '<div class="alert alert-danger mt-2"> Email could not be sent.</div>';
}
}
?>
</div>
<!-- <p class="text-center">OR</p>
<p class="text-center">Send Payment Screenshot to <a style="color:blue;"href="mailto:[email protected]">[email protected]</a>
</p> -->
<!-- </div> -->
</div>
</div>
</div>
</section>
</main>
<?php include 'common/footer.php'; ?>
<?php include 'common/scripts.php'; ?>
</body>
</html>
