@extends('layouts.main') @section('title',trans('core.title_email_templte')) @section('content')
Choose Email Template:

Select an existing email template or Create a new one

{!! Form::select("mailtemplate",$gettemplate ? $gettemplate : '',"",array("class"=>"form-control select-drop","id"=>"mailtemplate",'placeholder' => 'Please Select Template')) !!}
{!! Form::open(array('class'=>'form-horizontal','name'=>'emailtemplate_creation','id'=>'emailtemplate_creation')) !!}
{!! Form::text('title',null,['class'=>'form-control','placeholder'=>'Enter Email Template Title','id'=>'title']) !!}
{{ Form::textarea('content', null, array('class' => 'js-content', 'id'=>'content', 'name'=>'content'))}}
Cancel
{!! Form::close() !!}

Instructions

  1. Create a template with the keywords mentioned in the example below to send emails.
  2. You can change the keywords' positions according to the template.
  3. All keywords are not mandatory. You can choose keywords according to the email content.
Sample Email Template

Header

Company Logo and Banner (Updated by HireMee)


{{--

Dear {Seeker Name}, --}}

Hi, Greetings from HireMee!!
Congratulation! We are glad to inform you that based on your skill set and experience, you have been shortlisted for a Job Opportunity! {link}

Preliminary Exam Process for:

Interview Location: {InterviewLocation}
Interview Date: {InterviewDate}
Interview Time: {InterviewTime}

Thanks & Regards,
XXXXXXX
XXXXX
XXXX


Footer

HireMee Logo, Related Links, and Content
(Updated by HireMee)

@endsection