Customer Mail, Mails, Views Lead Customer
This commit is contained in:
parent
f1e0900a7a
commit
f53f17f9c1
46 changed files with 2217 additions and 1489 deletions
|
|
@ -128,12 +128,7 @@
|
|||
|
||||
</script>
|
||||
|
||||
<!-- Modal template -->
|
||||
<div class="modal fade" id="modals-load-content">
|
||||
<div class="modal-dialog">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@endsection
|
||||
|
|
@ -87,12 +87,7 @@
|
|||
</script>
|
||||
</div>
|
||||
|
||||
<!-- Modal template -->
|
||||
<div class="modal fade" id="modals-load-content">
|
||||
<div class="modal-dialog">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
@endsection
|
||||
72
resources/views/customer/detail.blade.php
Executable file
72
resources/views/customer/detail.blade.php
Executable file
|
|
@ -0,0 +1,72 @@
|
|||
@extends('layouts.layout-2')
|
||||
|
||||
@section('content')
|
||||
|
||||
<style>
|
||||
body {
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.btn-xs {
|
||||
line-height: 1.3em;
|
||||
}
|
||||
.table tbody + tbody {
|
||||
border-top: 1px solid #9c9c9c;
|
||||
}
|
||||
.table th, .table td {
|
||||
border-top: none;
|
||||
}
|
||||
.table tr.border-none td, .table tr.border-none th {
|
||||
border-top: none;
|
||||
}
|
||||
.table .thead-dark th {
|
||||
color: #4E5155;
|
||||
background-color: rgba(24, 28, 33, 0.1);
|
||||
border-color: rgba(63, 69, 74, 0.1);
|
||||
}
|
||||
|
||||
.input-group-text {
|
||||
padding: 0.438rem 0.475rem;
|
||||
}
|
||||
|
||||
</style>
|
||||
<h4 class="font-weight-bold py-3 mb-1">
|
||||
Kunden verwalten
|
||||
</h4>
|
||||
|
||||
{!! Form::open(['url' => route('customer_detail', [$id]), 'class' => 'form-horizontal', 'id'=>'lead-form-validation']) !!}
|
||||
|
||||
<input type="hidden" name="id" id="id" value="{{$id}}">
|
||||
|
||||
<!-- draft -->
|
||||
<div class="card mb-2">
|
||||
<div class="card-body row">
|
||||
<div class="form-group col-sm-6">
|
||||
<label class="form-label" for="customer_id">{{ __('Nr.') }}*</label>
|
||||
{{ Form::text('id', $customer->id, array('placeholder'=>__('Nr.'), 'class'=>'form-control', 'id'=>'customer_id', 'readonly')) }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="text-left mt-3">
|
||||
<button type="submit" name="action" value="saveAll" class="btn btn-submit">{{ __('save changes') }}</button>
|
||||
<a href="{{route('customers')}}" class="btn btn-default">{{ __('zur Übersicht') }}</a>
|
||||
<a href="{{ make_old_url('/index.php/customer/'.$customer->id.'/edit') }}" class="btn btn-default float-right">{{ __('zurück ins CRM v2') }}</a>
|
||||
|
||||
</div>
|
||||
|
||||
{!! Form::close() !!}
|
||||
|
||||
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
@endsection
|
||||
52
resources/views/customer/index.blade.php
Executable file
52
resources/views/customer/index.blade.php
Executable file
|
|
@ -0,0 +1,52 @@
|
|||
@extends('layouts.layout-2')
|
||||
|
||||
@section('content')
|
||||
|
||||
<h4 class="font-weight-bold py-3 mb-4">
|
||||
{{ __('Kunden') }}
|
||||
</h4>
|
||||
|
||||
<div class="card">
|
||||
<div class="card-datatable table-responsive">
|
||||
<table class="datatables-customer table table-striped table-bordered">
|
||||
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="max-width: 60px;"> </th>
|
||||
<th>{{__('KundenID')}}</th>
|
||||
<th>{{__('Vorname')}}</th>
|
||||
<th>{{__('Nachname')}}</th>
|
||||
<th>{{__('E-Mail')}}</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
$( document ).ready(function() {
|
||||
$('.datatables-customer').dataTable({
|
||||
"processing": true,
|
||||
"serverSide": true,
|
||||
"ajax": '{!! route('data_table_customers') !!}',
|
||||
"order": [[ 1, "desc" ]],
|
||||
"columns": [
|
||||
{ data: 'action_edit', orderable: false, searchable: false},
|
||||
{ data: 'id', name: 'id' },
|
||||
{ data: 'firstname', name: 'firstname' },
|
||||
{ data: 'name', name: 'name' },
|
||||
{ data: 'email', name: 'email' },
|
||||
],
|
||||
"bLengthChange": false,
|
||||
"iDisplayLength": 100,
|
||||
"language": {
|
||||
"url": "/js/German.json"
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
@endsection
|
||||
286
resources/views/customer/mail/detail.blade.php
Executable file
286
resources/views/customer/mail/detail.blade.php
Executable file
|
|
@ -0,0 +1,286 @@
|
|||
@extends('layouts.layout-2')
|
||||
|
||||
@section('content')
|
||||
|
||||
<style>
|
||||
body {
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.btn-xs {
|
||||
line-height: 1.3em;
|
||||
}
|
||||
.table tbody + tbody {
|
||||
border-top: 1px solid #9c9c9c;
|
||||
}
|
||||
.table th, .table td {
|
||||
border-top: none;
|
||||
}
|
||||
.table tr.border-none td, .table tr.border-none th {
|
||||
border-top: none;
|
||||
}
|
||||
.table .thead-dark th {
|
||||
color: #4E5155;
|
||||
background-color: rgba(24, 28, 33, 0.1);
|
||||
border-color: rgba(63, 69, 74, 0.1);
|
||||
}
|
||||
|
||||
.input-group-text {
|
||||
padding: 0.438rem 0.475rem;
|
||||
}
|
||||
|
||||
</style>
|
||||
<h4 class="font-weight-bold py-3 mb-1">
|
||||
Kunden verwalten
|
||||
</h4>
|
||||
|
||||
<input type="hidden" name="id" id="id" value="{{$id}}">
|
||||
|
||||
<div class="card messages-card">
|
||||
<div class="row no-gutters">
|
||||
|
||||
<!-- Messages sidebox -->
|
||||
<div class="messages-sidebox messages-scroll col">
|
||||
|
||||
<div class="card-body py-3">
|
||||
<div class="media align-items-center">
|
||||
<div class="media-body">
|
||||
<a href="{{route('customer_mails')}}" class="btn btn-default btn-block">{{ __('zur Übersicht') }}</a>
|
||||
</div>
|
||||
<a href="javascript:void(0)" class="messages-sidebox-toggler d-lg-none d-block text-muted text-large font-weight-light pl-4">×</a>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="border-light m-0">
|
||||
|
||||
<div class="card-body pt-3">
|
||||
{{-- <input type="text" class="form-control form-control-sm mb-4" placeholder="Search...">
|
||||
|
||||
<!-- Mail boxes -->
|
||||
<a href="javascript:void(0)" class="d-flex justify-content-between align-items-center text-body font-weight-bold py-2">
|
||||
<div>
|
||||
<i class="ion ion-ios-filing"></i> Inbox
|
||||
</div>
|
||||
<div class="badge badge-primary">15</div>
|
||||
</a>
|
||||
<a href="javascript:void(0)" class="d-flex justify-content-between align-items-center text-muted py-2">
|
||||
<div>
|
||||
<i class="ion ion-ios-mail"></i> Sent
|
||||
</div>
|
||||
</a>
|
||||
<a href="javascript:void(0)" class="d-flex justify-content-between align-items-center text-muted py-2">
|
||||
<div>
|
||||
<i class="ion ion-md-create"></i> Drafts
|
||||
</div>
|
||||
</a>
|
||||
<a href="javascript:void(0)" class="d-flex justify-content-between align-items-center text-muted py-2">
|
||||
<div>
|
||||
<i class="ion ion-md-folder-open"></i> Spam
|
||||
</div>
|
||||
</a>
|
||||
<a href="javascript:void(0)" class="d-flex justify-content-between align-items-center text-muted py-2">
|
||||
<div>
|
||||
<i class="ion ion-md-trash"></i> Trash
|
||||
</div>
|
||||
</a>
|
||||
<!-- / Mail boxes -->
|
||||
|
||||
<hr class="border-light my-4">
|
||||
|
||||
<!-- Labels -->
|
||||
<h6 class="text-tiny font-weight-bold">LABELS</h6>
|
||||
<a href="javascript:void(0)" class="d-block text-muted py-1">
|
||||
<span class="badge badge-dot badge-success"></span> Clients
|
||||
</a>
|
||||
<a href="javascript:void(0)" class="d-block text-muted py-1">
|
||||
<span class="badge badge-dot badge-danger"></span> Important
|
||||
</a>
|
||||
<a href="javascript:void(0)" class="d-block text-muted py-1">
|
||||
<span class="badge badge-dot badge-info"></span> Social
|
||||
</a>
|
||||
<a href="javascript:void(0)" class="d-block text-muted py-1">
|
||||
<span class="badge badge-dot badge-warning"></span> Other
|
||||
</a>
|
||||
<!-- / Labels -->
|
||||
--}}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<!-- / Messages sidebox -->
|
||||
|
||||
<div class="col">
|
||||
|
||||
<!-- Header -->
|
||||
<div class="media p-4">
|
||||
<a href="javascript:void(0)" class="messages-sidebox-toggler d-lg-none d-block align-self-center text-muted text-large pr-3 mr-3"><i class="ion ion-md-more"></i></a>
|
||||
|
||||
<!-- Sender photo -->
|
||||
<div class="media-body pl-3">
|
||||
<!-- Sender & date -->
|
||||
<div class="mb-1">
|
||||
<<a href="mailto:{{$customer_mail->email}}">{{$customer_mail->email}}</a>> {{$customer_mail->created_at }}
|
||||
</div>
|
||||
|
||||
<!-- Subject -->
|
||||
<h5 class="line-height-inherit m-0">{{$customer_mail->subject}}</h5>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="border-light m-0">
|
||||
<!-- / Header -->
|
||||
|
||||
{{-- <!-- Controls -->
|
||||
<div class="media flex-wrap align-items-center p-2">
|
||||
<div class="media-body d-flex flex-wrap flex-basis-100 flex-basis-sm-auto">
|
||||
<button type="button" class="btn btn-default borderless md-btn-flat icon-btn messages-tooltip text-muted mr-3" title="Back"><i class="ion ion-md-arrow-back"></i></button>
|
||||
<button type="button" class="btn btn-default borderless md-btn-flat icon-btn messages-tooltip text-muted" title="Mark as unread"><i class="ion ion-md-mail-unread"></i></button>
|
||||
<button type="button" class="btn btn-default borderless md-btn-flat icon-btn messages-tooltip text-muted" title="Mark as important"><i class="ion ion-md-alert"></i></button>
|
||||
<button type="button" class="btn btn-default borderless md-btn-flat icon-btn messages-tooltip text-muted" title="Move to spam"><i class="ion ion-md-folder-open"></i></button>
|
||||
<button type="button" class="btn btn-default borderless md-btn-flat icon-btn messages-tooltip text-muted" title="Move to trash"><i class="ion ion-md-trash"></i></button>
|
||||
</div>
|
||||
|
||||
<div class="d-flex flex-wrap align-items-center ml-auto">
|
||||
<button type="button" class="btn btn-default borderless md-btn-flat text-muted px-3"><i class="ion ion-ios-undo"></i> Reply</button>
|
||||
<div class="text-lighter">|</div>
|
||||
<button type="button" class="btn btn-default borderless md-btn-flat text-muted px-3">Forward <i class="ion ion-ios-redo"></i></button>
|
||||
</div>
|
||||
</div>
|
||||
<hr class="border-light m-0">
|
||||
<!-- / Controls -->
|
||||
--}}
|
||||
|
||||
<!-- Message content -->
|
||||
<div class="p-4">
|
||||
{!! nl2br($customer_mail->message) !!}
|
||||
</div>
|
||||
<hr class="border-light m-0">
|
||||
<!-- / Message content -->
|
||||
|
||||
<!-- Message attachments -->
|
||||
|
||||
|
||||
<div class="px-4 pt-4 pb-2">
|
||||
@if($customer_mail->customer)
|
||||
<p><strong>Kunde: </strong>
|
||||
{{ $customer_mail->customer->salutation->name }} {{ $customer_mail->customer->firstname }} {{ $customer_mail->customer->name }}
|
||||
</p>
|
||||
@endif
|
||||
|
||||
@if($customer_mail->booking)
|
||||
<p><strong>Buchung: </strong>
|
||||
{{ $customer_mail->booking_id }}
|
||||
@if($customer_mail->booking->travel_country_id)
|
||||
{{ " | ".$customer_mail->booking->travel_country->name }}
|
||||
@endif
|
||||
@if($customer_mail->booking->travelagenda_id)
|
||||
{{ " | ".$customer_mail->booking->travel_agenda->name }}
|
||||
@endif
|
||||
</p>
|
||||
@endif
|
||||
|
||||
@if($customer_mail->send)
|
||||
<span class="badge badge-success">Mail gesendet</span>
|
||||
<p>Datum: {{$customer_mail->sent_at}}</p>
|
||||
@endif
|
||||
@if($customer_mail->fail)
|
||||
<span class="badge badge-danger">Mail Fehler</span>
|
||||
<p>{{$customer_mail->error }}</p>
|
||||
@endif
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
{{-- <div class="px-4 pt-4 pb-2">
|
||||
<h6 class="small font-weight-semibold mb-4">Fehler</h6>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-sm-6 col-lg-12 col-xl-4">
|
||||
|
||||
<div class="message-attachment ui-bordered p-2 mr-3 mb-3">
|
||||
<div class="message-attachment-img" style="background-image: url(assets/img/bg/5.jpg)"></div>
|
||||
<div class="media-body ml-3">
|
||||
<strong class="message-attachment-filename">image_1.jpg</strong>
|
||||
<div class="text-muted small">527KB</div>
|
||||
<div>
|
||||
<a href="javascript:void(0)">View</a>
|
||||
<a href="javascript:void(0)">Download</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col-sm-6 col-lg-12 col-xl-4">
|
||||
|
||||
<div class="message-attachment ui-bordered p-2 mr-3 mb-3">
|
||||
<div class="message-attachment-img" style="background-image: url(assets/img/bg/6.jpg)"></div>
|
||||
<div class="media-body ml-3">
|
||||
<strong class="message-attachment-filename">image_2.jpg</strong>
|
||||
<div class="text-muted small">269KB</div>
|
||||
<div>
|
||||
<a href="javascript:void(0)">View</a>
|
||||
<a href="javascript:void(0)">Download</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col-sm-6 col-lg-12 col-xl-4">
|
||||
|
||||
<div class="message-attachment ui-bordered p-2 mr-3 mb-3">
|
||||
<div class="message-attachment-file display-4"><i class="far fa-file-pdf"></i></div>
|
||||
<div class="media-body ml-3">
|
||||
<strong class="message-attachment-filename">assignment_letter.pdf</strong>
|
||||
<div class="text-muted small">156KB</div>
|
||||
<div>
|
||||
<a href="javascript:void(0)">View</a>
|
||||
<a href="javascript:void(0)">Download</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="col-sm-6 col-lg-12 col-xl-4">
|
||||
|
||||
<div class="message-attachment ui-bordered p-2 mr-3 mb-3">
|
||||
<div class="message-attachment-file display-4"><i class="far fa-file-archive"></i></div>
|
||||
<div class="media-body ml-3">
|
||||
<strong class="message-attachment-filename">app_update.zip</strong>
|
||||
<div class="text-muted small">1.35MB</div>
|
||||
<div>
|
||||
<a href="javascript:void(0)">Download</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div><hr class="border-light m-0">
|
||||
<!-- / Message attachments -->
|
||||
|
||||
<!-- Footer -->
|
||||
<div class="text-right p-4">
|
||||
<button type="button" class="btn btn-primary"><i class="ion ion-ios-undo"></i> Reply</button>
|
||||
|
||||
<button type="button" class="btn btn-default">Forward <i class="ion ion-ios-redo"></i></button>
|
||||
</div>
|
||||
--}}
|
||||
<!-- / Footer -->
|
||||
|
||||
</div>
|
||||
|
||||
</div><!-- / .row -->
|
||||
</div><!-- / .card -->
|
||||
|
||||
|
||||
|
||||
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
@endsection
|
||||
65
resources/views/customer/mail/index.blade.php
Executable file
65
resources/views/customer/mail/index.blade.php
Executable file
|
|
@ -0,0 +1,65 @@
|
|||
@extends('layouts.layout-2')
|
||||
|
||||
@section('content')
|
||||
|
||||
<h4 class="font-weight-bold py-3 mb-4">
|
||||
{{ __('Kunden Mails') }}
|
||||
</h4>
|
||||
|
||||
<div class="card">
|
||||
<div class="card-datatable table-responsive">
|
||||
<table class="datatables-customer table table-striped table-bordered">
|
||||
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="max-width: 60px;"> </th>
|
||||
<th>{{__('Mail-ID')}}</th>
|
||||
<th>{{__('Kunden-ID')}}</th>
|
||||
<th>{{__('Vorname')}}</th>
|
||||
<th>{{__('Nachname')}}</th>
|
||||
<th>{{__('E-Mail')}}</th>
|
||||
<th>{{__('Betreff')}}</th>
|
||||
<th>{{__('Buchung-ID')}}</th>
|
||||
<th>{{__('Buchung')}}</th>
|
||||
<th>{{__('gesendet')}}</th>
|
||||
<th>{{__('Datum')}}</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
$( document ).ready(function() {
|
||||
$('.datatables-customer').dataTable({
|
||||
"processing": true,
|
||||
"serverSide": true,
|
||||
"ajax": '{!! route('data_table_customer_mails') !!}',
|
||||
"order": [[ 1, "desc" ]],
|
||||
"columns": [
|
||||
{ data: 'action_edit', orderable: false, searchable: false},
|
||||
{ data: 'id', name: 'id' },
|
||||
{ data: 'customer_id', name: 'customer_id' },
|
||||
{ data: 'customer.firstname', name: 'customer.firstname' },
|
||||
{ data: 'customer.name', name: 'customer.name' },
|
||||
{ data: 'email', name: 'email' },
|
||||
{ data: 'subject', name: 'subject' },
|
||||
{ data: 'booking_id', name: 'booking_id' },
|
||||
{ data: 'booking', name: 'booking', searchable: false },
|
||||
{ data: 'send', name: 'send', searchable: false },
|
||||
{ data: 'created_at', name: 'created_at' },
|
||||
|
||||
],
|
||||
"bLengthChange": false,
|
||||
"iDisplayLength": 100,
|
||||
"language": {
|
||||
"url": "/js/German.json"
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
@endsection
|
||||
|
|
@ -1,237 +0,0 @@
|
|||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
||||
<title>mein STERN TOURS</title>
|
||||
|
||||
<style type="text/css">
|
||||
@import url(https://fonts.googleapis.com/css?family=Roboto);
|
||||
img {
|
||||
max-width: 600px;
|
||||
outline: none;
|
||||
text-decoration: none;
|
||||
-ms-interpolation-mode: bicubic;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
border: 0;
|
||||
outline: none;
|
||||
color: #5f8155;
|
||||
}
|
||||
|
||||
a:hover {
|
||||
color:#e5aa30;
|
||||
}
|
||||
|
||||
a img {
|
||||
border: none;
|
||||
}
|
||||
|
||||
td, h1, h2, h3 {
|
||||
font-family: "Roboto", Helvetica, Arial, sans-serif;
|
||||
font-weight: 400;
|
||||
}
|
||||
|
||||
td {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
body {
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-webkit-text-size-adjust: none;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
color: #37302d;
|
||||
background: #ffffff;
|
||||
font-size: 15px;
|
||||
line-height: 26px
|
||||
}
|
||||
|
||||
table {
|
||||
border-collapse: collapse !important;
|
||||
}
|
||||
|
||||
.headline {
|
||||
color: #5f8155;
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
.force-full-width {
|
||||
width: 100% !important;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
|
||||
<style type="text/css" media="screen">
|
||||
@media screen {
|
||||
/*Thanks Outlook 2013! http://goo.gl/XLxpyl*/
|
||||
td, h1, h2, h3 {
|
||||
font-family: 'Roboto', 'Helvetica Neue', 'Arial', 'sans-serif' !important;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
<style type="text/css" media="only screen and (max-width: 480px)">
|
||||
/* Mobile styles */
|
||||
@media only screen and (max-width: 480px) {
|
||||
|
||||
table[class="w320"] {
|
||||
width: 320px !important;
|
||||
}
|
||||
|
||||
}
|
||||
</style>
|
||||
<!--[if mso]>
|
||||
<style type="text/css">
|
||||
body, table, td {
|
||||
font-family: Helvetica, Arial, sans-serif !important;
|
||||
}
|
||||
</style>
|
||||
<![endif]-->
|
||||
|
||||
|
||||
</head>
|
||||
<body class="body" style="padding:0; margin:0; display:block; background:#f8f8f8; -webkit-text-size-adjust:none" bgcolor="#f8f8f8">
|
||||
|
||||
<div style="display: none; mso-hide: all; width: 0px; height: 0px; max-width: 0px; max-height: 0px; font-size: 0px; line-height: 0px;">
|
||||
{{ $copy1line }}
|
||||
</div>
|
||||
|
||||
<table align="center" cellpadding="0" cellspacing="0" width="100%" height="100%">
|
||||
<tr>
|
||||
<td align="center" valign="top" bgcolor="#f8f8f8" width="100%">
|
||||
<center>
|
||||
<br>
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="700" class="w320">
|
||||
<tr>
|
||||
<td align="center" valign="top">
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td style=" text-align:center;">
|
||||
<center>
|
||||
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="">
|
||||
<tbody class="">
|
||||
<tr class="">
|
||||
<td align="center" valign="top" style="font-size: 0px;" class="">
|
||||
<picture class="">
|
||||
<img src="https://mein.sterntours.de/images/stern-tours-logo.png" alt="STERN TOURS" style="border:none" width="260">
|
||||
</picture>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><br></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="100%"
|
||||
bgcolor="#ffffff">
|
||||
<tr>
|
||||
<td class="headline">
|
||||
<br><br>
|
||||
<b>{{ $salutation }} </b>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<center>
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="90%">
|
||||
<tr>
|
||||
<td style="color:#37302d;">
|
||||
<br>
|
||||
{{ $copy1line }}
|
||||
<br>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
<center>
|
||||
<table role="presentation" cellpadding="0" cellspacing="0" width="100%" border="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="word-wrap:break-word;background:transparent;font-size:0px;padding:10px 25px;padding-top:15px;padding-bottom:15px;padding-right:40px;padding-left:40px;" align="center" valign="top" background="data:image/gif;base64,">
|
||||
<table role="presentation" cellpadding="0" cellspacing="0" align="center" border="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td style="border:none;border-radius:20px;color:#ffffff;cursor:auto;padding:15px 25px;" align="center" valign="middle" bgcolor="#5f8155">
|
||||
<p style="text-decoration:none;background:#5f8155;color:#ffffff;font-family:Arial, sans-serif;font-size:13px;font-weight:normal;line-height:120%;text-transform:none;margin:0px;">
|
||||
<a href="{{ $url }}" style="color:#ffffff;font-size:14px;font-weight:bold;text-align:center;text-decoration:none;-webkit-text-size-adjust:none;">{{ $button }}</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#37302d;font-size: 14px;">
|
||||
<center>
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="90%">
|
||||
<tr>
|
||||
<td style="color:#37302d;">
|
||||
<br>
|
||||
{{ $copy2line }}<br>
|
||||
<span style="color: #cabda9; font-weight: normal; font-size: 13px; text-decoration: underline; word-wrap: break-word;">{{ $url }}</span>
|
||||
<br><br>
|
||||
{{ $greetings }} <br><b>Ihr Team von STERN TOURS</b>
|
||||
<br>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><br></td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" class="force-full-width"
|
||||
bgcolor="#f8f8f8" style="margin: 0 auto">
|
||||
<tr>
|
||||
<td style="color:#7B7B7E; font-size:14px;">
|
||||
<br>
|
||||
STERN TOURS GmbH | Emser Straße 3 | 10719 Berlin<br>
|
||||
Tel: +49 (0) 30 700 94 100 | Fax: +49 (0) 30 700 94 1044 | stern@sterntours.de<br>
|
||||
<br>
|
||||
<a href="https://www.sterntours.de" style="color: #7B7B7E; text-decoration: underline;">www.sterntours.de</a>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#bbbbbb; font-size:12px;">
|
||||
Geschäftsführer: Thomas Stern | Registergericht: Amtsgericht Charlottenburg | Registernummer: HRB 67111<br>
|
||||
Steuernummer: 27/545/30703 | UST-Ident.-Nr.: DE192609253 | Finanzamt: Wilmersdorf<br>
|
||||
<a href="{{route('data_protected')}}">Datenschutzerklärung</a> <br>
|
||||
© 2018 All Rights Reserved <br>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,766 +0,0 @@
|
|||
<table cellpadding="0" cellspacing="0" border="0" width="100%" class="nl-wrapper-table" bgcolor="#EDEDED">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<table width="620" align="center" cellpadding="0" cellspacing="0" border="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
|
||||
|
||||
<table align="center" border="0" cellpadding="0" cellspacing="0" bgcolor="#FFFFFF"
|
||||
class="nl-body-table" width="620">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td colspan="3" valign="top" align="center" bgcolor="#EDEDED">
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="center">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top" style="line-height: 0; font-size: 0;" height="26">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center"
|
||||
style="padding-left: 20px; padding-right: 20px; padding-bottom: 6px"><span
|
||||
style="color:#7c7c7c; font-family: 'Arial', Helvetica, sans-serif; font-size:12px; line-height: 14px;">Wenn diese Nachricht nicht korrekt angezeigt wird, klicken Sie
|
||||
bitte</span> <a class="cmp_parsed_url" cmp_parsed_url="https://kommunikationsdienste.t-online.de/booking/mcs.html"
|
||||
target="_blank" href="https://kommunikationsdienste.t-online.de/booking/mcs.html"
|
||||
style="color:#0090c4; font-family: 'Arial', Helvetica, sans-serif; font-size:12px; line-height: 14px; text-decoration: underline;">hier</a>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" style="line-height: 0; font-size: 0;" height="4">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="left" valign="top" height="20"
|
||||
style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/header.jpg"
|
||||
width="580" border="0" alt="Telekom - Erleben, was verbindet."
|
||||
style="display: block;" class="head-image"></td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="left" valign="top" height="29"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top" height="24" style="border-top: 1px solid #d0d0d0;"> </td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #e20074; font-size:19px; line-height: 27px; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
<strong>HERZLICH WILLKOMMEN BEI MAIL S FÜR KUNDEN DER TELEKOM</strong></p></td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" valign="top" height="22"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size:16px; line-height: 23px; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
<strong>Hallo Herr Adametz,</strong></p></td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" valign="top" height="9" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Herzlich Willkommen bei Telekom Mail S!<br><br>Mail S ist der kostenlose
|
||||
E-Mail-Dienst für Kunden der Telekom und
|
||||
bietet Ihnen exklusive Produktvorteile – egal ob auf dem
|
||||
Smartphone, Tablet oder Computer.<br><br>Mit Sync-Plus haben Sie Ihre E-Mails,
|
||||
Kontakte und Termine immer
|
||||
dort verfügbar, wo Sie sie brauchen. <a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://sync.t-online.de"
|
||||
target="_blank"
|
||||
href="https://sync.t-online.de"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; text-decoration: none;">Richten
|
||||
Sie Sync-Plus am besten gleich ein!</a><br><br>Für Ihre Ablage senden wir
|
||||
Ihnen die Informationen, die Sie uns
|
||||
während der Registrierung mitgeteilt haben:</p></td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" valign="top" height="25" style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top" bgcolor="#EDEDED">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%"
|
||||
class="personalized-info-table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top" height="19" style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" width="30" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top">
|
||||
<table cellspacing="0" cellpadding="0" border="0" width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle" width="35%"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px;">
|
||||
Name:
|
||||
</td>
|
||||
<td valign="top" width="65%"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px;">
|
||||
<strong style="line-height: 20px">Kevin Adametz</strong>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" valign="top"
|
||||
style="line-height: 0; font-size: 0;" height="5">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="middle"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px;">
|
||||
<span style="line-height: 20px">E-Mail-Adresse:</span></td>
|
||||
<td valign="top"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px;">
|
||||
<strong style="line-height: 20px"><span
|
||||
class="cmp_parsed_email"
|
||||
data-cmp_parsed_email="kevin.adametz@t-online.de"
|
||||
data-ce-class="Emails">kevin.adametz@t-online.de</span></strong>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="2" valign="top"
|
||||
style="line-height: 0; font-size: 0;" height="5">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="middle"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px;">
|
||||
<span style="line-height: 20px">Gebuchter Dienst:</span>
|
||||
</td>
|
||||
<td valign="top"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px;">
|
||||
<strong style="line-height: 20px">Mail S</strong></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td valign="top" width="30" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" height="19" style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" valign="top" height="25" style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Ihre gebuchten Produkte und Services können Sie jederzeit im <a
|
||||
class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://www.telekom.de/kundencenter/startseite"
|
||||
target="_blank" href="https://www.telekom.de/kundencenter/startseite"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size:14px; line-height: 20px; text-decoration: none;">Kundencenter</a>
|
||||
ändern. Verwalten Sie in den <a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://account.idm.telekom.com/account-manager/index.xhtml"
|
||||
target="_blank"
|
||||
href="https://account.idm.telekom.com/account-manager/index.xhtml"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size:14px; line-height: 20px; text-decoration: none;">Anmeldeeinstellungen</a>
|
||||
bequem Ihre Benutzerdaten und Passwörter.<br><br></p>
|
||||
<p style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size:14px; line-height: 20px; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Wir wünschen Ihnen viel Spaß mit Mail S<br><span
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size:14px; line-height: 20px;">Ihre Telekom</span>
|
||||
</p></td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="left" valign="top" height="25"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top" height="24" style="border-top: 1px solid #d0d0d0;"> </td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 16px; line-height: 23px; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
<strong>So kommen Sie zu E-Mail!</strong></p></td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top" height="17"> </td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="left" width="48%"
|
||||
class="column-left-table" style="margin-bottom: 24px">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle" width="18%"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-inbox.gif"
|
||||
width="44" height="41"></td>
|
||||
<td valign="top" width="3%"> </td>
|
||||
<td valign="top" width="79%"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Rufen Sie Ihr E-Mail-Postfach von zu Hause über Ihren
|
||||
Internet-Browser auf.</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" height="10" colspan="3"
|
||||
style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"></td>
|
||||
<td valign="top"></td>
|
||||
<td valign="top"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://email.t-online.de"
|
||||
target="_blank"
|
||||
href="https://email.t-online.de"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; text-decoration: none;">Zum
|
||||
E-Mail Center</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="right" width="48%"
|
||||
class="column-right-table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle" width="18%"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-mail-app.gif"
|
||||
width="32" height="41"></td>
|
||||
<td valign="top" width="3%"> </td>
|
||||
<td valign="top" width="79%"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Nutzen Sie E-Mail mit der Telekom Mail App auch
|
||||
unterwegs auf Ihrem
|
||||
Smartphone oder Tablet.</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" height="10" colspan="3"
|
||||
style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"></td>
|
||||
<td valign="top"></td>
|
||||
<td valign="top">
|
||||
<table align="left" cellpadding="0" cellspacing="0"
|
||||
border="0" class="app-download-table-left">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://itunes.apple.com/de/app/telekom-mail/id803009523?mt=8"
|
||||
target="_blank"
|
||||
href="https://itunes.apple.com/de/app/telekom-mail/id803009523?mt=8"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/app-store.png"
|
||||
width="93" height="32"
|
||||
style="display: block;" border="0"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table align="right" cellpadding="0" cellspacing="0"
|
||||
border="0" class="app-download-table-right">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://play.google.com/store/apps/details?id=de.telekom.mail"
|
||||
target="_blank"
|
||||
href="https://play.google.com/store/apps/details?id=de.telekom.mail"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/google-play.png"
|
||||
width="90" height="32"
|
||||
style="display: block;" border="0"></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" style="line-height: 0; font-size: 0;" height="40"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="left" width="48%"
|
||||
class="column-left-table" style="margin-bottom: 24px">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle" width="18%"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-mail-clients.gif"
|
||||
width="40" height="40"></td>
|
||||
<td valign="top" width="3%"> </td>
|
||||
<td valign="top" width="79%"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Sie nutzen ein E-Mail-Programm wie z. B. Outlook oder
|
||||
Thunderbird?
|
||||
Richten Sie sich dieses hier ein.</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" height="10" colspan="3"
|
||||
style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"></td>
|
||||
<td valign="top"></td>
|
||||
<td valign="top"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="http://www.telekom.de/hilfe/festnetz-internet-tv/e-mail/e-mail-konto"
|
||||
target="_blank"
|
||||
href="http://www.telekom.de/hilfe/festnetz-internet-tv/e-mail/e-mail-konto"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; text-decoration: none;">Jetzt
|
||||
einrichten</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="right" width="48%"
|
||||
class="column-right-table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle" width="18%"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-sync-plus.gif"
|
||||
width="31" height="35"></td>
|
||||
<td valign="top" width="3%"> </td>
|
||||
<td valign="top" width="79%"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Mit Sync-Plus haben Sie Ihre E-Mails, Kontakte und
|
||||
Termine immer
|
||||
dort verfügbar, wo Sie sie brauchen.</p></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" height="10" colspan="3"
|
||||
style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top"></td>
|
||||
<td valign="top"></td>
|
||||
<td valign="top"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://sync.t-online.de"
|
||||
target="_blank"
|
||||
href="https://sync.t-online.de"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; text-decoration: none;">Sync-Plus
|
||||
einrichten</a></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="left" valign="top" height="24"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top" height="24" style="border-top: 1px solid #d0d0d0;"> </td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 16px; line-height: 23px; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
<strong>Alles für den erfolgreichen Start!</strong></p></td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top" height="17"> </td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="left" width="48%"
|
||||
class="column-left-table" style="margin-bottom: 24px">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle" width="18%"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-setup-wizard.gif"
|
||||
width="44" height="34"></td>
|
||||
<td valign="top" width="3%"> </td>
|
||||
<td valign="top" width="79%"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Verbinden Sie E-Mail Postfächer von anderen
|
||||
E-Mail-Anbietern mit
|
||||
Ihrem Telekom Mail Postfach.<br><a
|
||||
class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://email.t-online.de/prefs?a=inboxsettings.emcaccount"
|
||||
target="_blank"
|
||||
href="https://email.t-online.de/prefs?a=inboxsettings.emcaccount"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; text-decoration: none;">E-Mail
|
||||
Postfach verbinden</a>.</p></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="right" width="48%"
|
||||
class="column-right-table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle" width="18%"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-speicherdauer.gif"
|
||||
width="40" height="33"></td>
|
||||
<td valign="top" width="3%"> </td>
|
||||
<td valign="top" width="79%"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
Konfigurieren Sie die individuelle <a
|
||||
class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://email.t-online.de/pr?a=globalsettings.expire"
|
||||
target="_blank"
|
||||
href="https://email.t-online.de/pr?a=globalsettings.expire"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size: 14px; line-height: 20px; letter-spacing: 0.01em; text-decoration: none;">Speicherdauer</a>
|
||||
Ihrer E-Mails jederzeit und bequem im E-Mail Center.</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" style="line-height: 0; font-size: 0;" height="24"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top" bgcolor="#FBFBFB">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%"
|
||||
style="border: 1px solid #d0d0d0;">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top" height="25" colspan="3"
|
||||
style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" width="30"></td>
|
||||
<td valign="top">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="100%"
|
||||
class="handbook-table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle">
|
||||
<table cellpadding="0" cellspacing="0" border="0"
|
||||
width="100%">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top" width="46"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-email-handbuch.gif"
|
||||
width="46" height="57"
|
||||
style="display: block"></td>
|
||||
<td valign="top" width="21"> </td>
|
||||
<td valign="middle" height="57"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #4b4b4b; font-size: 14px; line-height: 20px; padding: 0; Margin-top: 0; Margin-bottom: 0; letter-spacing: 0.01em;">
|
||||
Alles rund um unser E-Mail Center finden Sie
|
||||
in unserem praktischen<br><a
|
||||
class="cmp_parsed_url"
|
||||
cmp_parsed_url="http://www.t-online.de/email/handbuch"
|
||||
target="_blank"
|
||||
href="http://www.t-online.de/email/handbuch"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #0090c4; font-size: 14px; line-height: 20px; text-decoration: none; letter-spacing: 0.01em;">E-Mail-Handbuch</a>
|
||||
im PDF-Format zum Herunterladen.</p></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td valign="top" width="30"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" height="27" colspan="3"
|
||||
style="line-height: 0; font-size: 0">
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" style="line-height: 0; font-size: 0;" height="15"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top" class="footer-icon-bar">
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="21%" align="left"
|
||||
class="column-1">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top" align="center"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://kundencenter.telekom.de"
|
||||
target="_blank"
|
||||
href="https://kundencenter.telekom.de"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-kundencenter.gif"
|
||||
style="display: block;" width="38" height="38"
|
||||
border="0"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center" height="4"
|
||||
style="line-height: 0; font-size: 0;"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://kundencenter.telekom.de"
|
||||
target="_blank"
|
||||
href="https://kundencenter.telekom.de"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size: 11px; line-height: 17px; text-decoration: none"><strong>Kundencenter</strong></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="31%" align="left"
|
||||
class="column-2">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top" align="center"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="http://www.telekom.de/hilfe/festnetz-internet-tv/e-mail"
|
||||
target="_blank"
|
||||
href="http://www.telekom.de/hilfe/festnetz-internet-tv/e-mail"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-hilfe.gif"
|
||||
style="display: block;" width="38" height="38"
|
||||
border="0"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center" height="4"
|
||||
style="line-height: 0; font-size: 0;"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="http://www.telekom.de/hilfe/festnetz-internet-tv/e-mail"
|
||||
target="_blank"
|
||||
href="http://www.telekom.de/hilfe/festnetz-internet-tv/e-mail"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size: 11px; line-height: 17px; text-decoration: none"><strong>E-Mail-Hilfe</strong></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="23%" align="left"
|
||||
class="column-3">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top" align="center"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://www.telekom.de/magentacloud"
|
||||
target="_blank"
|
||||
href="https://www.telekom.de/magentacloud"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-magentacloud.gif"
|
||||
style="display: block;" width="38" height="38"
|
||||
border="0"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center" height="4"
|
||||
style="line-height: 0; font-size: 0;"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://www.telekom.de/magentacloud"
|
||||
target="_blank"
|
||||
href="https://www.telekom.de/magentacloud"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size: 11px; line-height: 17px; text-decoration: none"><strong>MagentaCLOUD</strong></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" border="0" width="20%" align="right"
|
||||
class="column-4">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top" align="center" height="4"
|
||||
style="line-height: 0; font-size: 0;"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="http://t-online.de"
|
||||
target="_blank"
|
||||
href="http://t-online.de"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/icon-tonline.gif"
|
||||
style="display: block;" width="30" height="30"
|
||||
border="0"></a></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center" height="8"
|
||||
style="line-height: 0; font-size: 0;"></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="top" align="center"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="http://t-online.de"
|
||||
target="_blank" href="http://t-online.de"
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #383838; font-size: 11px; line-height: 17px; text-decoration: none"><strong>T-Online.de</strong></a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td width="20" style="line-height: 0; font-size: 0"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="left" valign="top" height="15"
|
||||
style="line-height: 0; font-size: 0;">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top" height="16" style="border-top: 1px solid #d0d0d0;"> </td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td valign="top" align="right">
|
||||
<table cellpadding="0" cellspacing="0" border="0">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="middle"><a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://kommunikationsdienste.t-online.de/email-made-in-germany/"
|
||||
target="_blank"
|
||||
href="https://kommunikationsdienste.t-online.de/email-made-in-germany/"><img
|
||||
src="https://td-newsletter-storage.i22hosting.de/emailings/17-0172-HTML-Vorlagen-MagentaCLOUD/images/emig.png"
|
||||
style="display: block;" width="33" height="21"
|
||||
border="0"></a></td>
|
||||
<td valign="top" width="8" style="line-height: 0; font-size: 0"> </td>
|
||||
<td valign="top"><p
|
||||
style="font-family: 'Arial', Helvetica, sans-serif; color: #262626; font-size: 12px; line-height: 16px; padding: 0; Margin-top: 0; Margin-bottom: 0; letter-spacing: 0.01em;">
|
||||
<strong>E-Mail made in Germany</strong></p></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" valign="top" height="12" style="font-size: 0; line-height: 0">
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="20"> </td>
|
||||
<td align="left" valign="middle" height="30"
|
||||
style="border-bottom: 1px solid #d0d0d0; border-top: 1px solid #d0d0d0;"
|
||||
class="copyright-meta-nav">
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="left" class="column-1">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="left" valign="middle"><p
|
||||
style="color:#4b4b4b; font-family: 'Arial', Helvetica, sans-serif; font-size:12px; line-height: 20px; padding: 0; Margin-top: 0; Margin-bottom: 0;">
|
||||
© Telekom Deutschland GmbH</p></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" border="0" align="right" class="column-2">
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="right" valign="middle"
|
||||
style="color:#4b4b4b; font-family: 'Arial', Helvetica, sans-serif; font-size:12px; line-height: 20px;">
|
||||
<a class="cmp_parsed_url" cmp_parsed_url="https://www.telekom.de/hilfe"
|
||||
target="_blank" href="https://www.telekom.de/hilfe"
|
||||
style="color:#0090c4; font-family: 'Arial', Helvetica, sans-serif; font-size:12px; line-height: 20px; text-decoration: none">Hilfe</a> |
|
||||
<a class="cmp_parsed_url"
|
||||
cmp_parsed_url="https://www.telekom.de/kontakt" target="_blank"
|
||||
href="https://www.telekom.de/kontakt"
|
||||
style="color:#0090c4; font-family: 'Arial', Helvetica, sans-serif; font-size:12px; line-height: 20px; text-decoration: none">Kontakt</a> |
|
||||
<a class="cmp_parsed_url"
|
||||
cmp_parsed_url="http://www.telekom.de/pflichtangaben" target="_blank"
|
||||
href="http://www.telekom.de/pflichtangaben"
|
||||
style="color:#0090c4; font-family: 'Arial', Helvetica, sans-serif; font-size:12px; line-height: 20px; text-decoration: none">Pflichtangaben</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
<td width="20"> </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="3" align="left" valign="top" height="20"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td height="30"> </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
|
@ -77,29 +77,7 @@
|
|||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="700" class="w320">
|
||||
<tr>
|
||||
<td align="center" valign="top">
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td style=" text-align:center;">
|
||||
<center>
|
||||
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="">
|
||||
<tbody class="">
|
||||
<tr class="">
|
||||
<td align="center" valign="top" style="font-size: 0px;" class="">
|
||||
<picture class="">
|
||||
<img src="https://mein.sterntours.de/images/stern-tours-logo.png" alt="STERN TOURS" style="border:none" width="260">
|
||||
</picture>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><br></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@include('emails.header')
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="100%"
|
||||
bgcolor="#ffffff">
|
||||
<tr>
|
||||
|
|
@ -172,28 +150,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" class="force-full-width"
|
||||
bgcolor="#f8f8f8" style="margin: 0 auto">
|
||||
<tr>
|
||||
<td style="color:#7B7B7E; font-size:14px;">
|
||||
<br>
|
||||
STERN TOURS GmbH | Emser Straße 3 | 10719 Berlin<br>
|
||||
Tel: +49 (0) 30 700 94 100 | Fax: +49 (0) 30 700 94 1044 | stern@sterntours.de<br>
|
||||
<br>
|
||||
<a href="https://www.sterntours.de" style="color: #7B7B7E; text-decoration: underline;">www.sterntours.de</a>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#bbbbbb; font-size:12px;">
|
||||
Geschäftsführer: Thomas Stern | Registergericht: Amtsgericht Charlottenburg | Registernummer: HRB 67111<br>
|
||||
Steuernummer: 27/545/30703 | UST-Ident.-Nr.: DE192609253 | Finanzamt: Wilmersdorf<br>
|
||||
<a href="{{route('data_protected')}}">Datenschutzerklärung</a> <br>
|
||||
© 2018 All Rights Reserved <br>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@include('emails.footer')
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
|
|||
|
|
@ -16,16 +16,18 @@ Ihr Team von STERN TOURS
|
|||
---------------
|
||||
|
||||
STERN TOURS GmbH
|
||||
Emser Straße 3
|
||||
10719 Berlin
|
||||
Tel: +49 (0) 30 700 94 100
|
||||
Fax: +49 (0) 30 700 94 1044
|
||||
stern@sterntours.de
|
||||
www.sterntours.de
|
||||
Emser Straße 3 | 10719 Berlin
|
||||
Fon: +49 (0) 30 700 94 100 | Fax: +49 (0) 30 700 94 10-44
|
||||
e-Mail: stern@sterntours.de | Internet: www.sterntours.de
|
||||
|
||||
---------------
|
||||
Handelsregister: Amtsgericht Charlottenburg | HRB 67111
|
||||
Steuer-Nr.: 27/545/30703 | UStId: DE192609253
|
||||
Geschäftsführung: Thomas Stern
|
||||
|
||||
Geschäftsführer: Thomas Stern | Registergericht: Amtsgericht Charlottenburg | Registernummer: HRB 67111
|
||||
Steuernummer: 27/545/30703 | UST-Ident.-Nr.: DE192609253 | Finanzamt: Wilmersdorf
|
||||
Datenschutzerklärung
|
||||
{{route('data_protected')}}
|
||||
Unsere vollständige Datenschutzerklärung finden Sie auf unserer Webseite unter {{route('data_protected')}}
|
||||
|
||||
Hinweis nach § 37 VSBG: Anschrift Verbraucherschlichtungsstelle: Allgemeine
|
||||
Verbraucherschlichtungsstelle des Zentrums für Schlichtung e.V.,
|
||||
Straßburger Str. 8, 77694 Kehl, www.verbraucher-schlichter.de
|
||||
Unser Unternehmen ist zur Teilnahme an einem Streitbeilegungsverfahren bei dieser
|
||||
Verbraucherschlichtungsstelle nicht verpflichtet und nimmt auch nicht freiwillig daran teil.
|
||||
|
|
|
|||
|
|
@ -69,29 +69,7 @@
|
|||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="700" class="w320">
|
||||
<tr>
|
||||
<td align="center" valign="top">
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td style=" text-align:center;">
|
||||
<center>
|
||||
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="">
|
||||
<tbody class="">
|
||||
<tr class="">
|
||||
<td align="center" valign="top" style="font-size: 0px;" class="">
|
||||
<picture class="">
|
||||
<img src="https://mein.sterntours.de/images/stern-tours-logo.png" alt="STERN TOURS" style="border:none" width="260">
|
||||
</picture>
|
||||
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><br></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@include('emails.header')
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="100%"
|
||||
bgcolor="#ffffff">
|
||||
<tr>
|
||||
|
|
@ -108,28 +86,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" class="force-full-width"
|
||||
bgcolor="#f8f8f8" style="margin: 0 auto">
|
||||
<tr>
|
||||
<td style="color:#7B7B7E; font-size:14px;">
|
||||
<br>
|
||||
STERN TOURS GmbH | Emser Straße 3 | 10719 Berlin<br>
|
||||
Tel: +49 (0) 30 700 94 100 | Fax: +49 (0) 30 700 94 1044 | stern@sterntours.de<br>
|
||||
<br>
|
||||
<a href="https://www.sterntours.de" style="color: #7B7B7E; text-decoration: underline;">www.sterntours.de</a>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#bbbbbb; font-size:12px;">
|
||||
Geschäftsführer: Thomas Stern | Registergericht: Amtsgericht Charlottenburg | Registernummer: HRB 67111<br>
|
||||
Steuernummer: 27/545/30703 | UST-Ident.-Nr.: DE192609253 | Finanzamt: Wilmersdorf<br>
|
||||
<a href="{{route('data_protected')}}">Datenschutzerklärung</a> <br>
|
||||
© 2018 All Rights Reserved <br>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@include('emails.footer')
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
|
|||
37
resources/views/emails/footer.blade.php
Normal file
37
resources/views/emails/footer.blade.php
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
<table cellpadding="0" cellspacing="0" class="force-full-width"
|
||||
bgcolor="#f8f8f8" style="margin: 0 auto">
|
||||
<tr>
|
||||
<td style="color:#7B7B7E; font-size:14px;">
|
||||
<br>
|
||||
STERN TOURS GmbH <br>
|
||||
Emser Straße 3 | 10719 Berlin <br>
|
||||
Fon: +49 (0) 30 700 94 100 | Fax: +49 (0) 30 700 94 10-44 <br>
|
||||
e-Mail: stern@sterntours.de | Internet: <a href="https://www.sterntours.de" style="color: #7B7B7E; text-decoration: underline;">www.sterntours.de</a> <br>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#9b9b9b; font-size:12px;">
|
||||
Handelsregister: Amtsgericht Charlottenburg | HRB 67111<br>
|
||||
Steuer-Nr.: 27/545/30703 | UStId: DE192609253<br>
|
||||
Geschäftsführung: Thomas Stern<br>
|
||||
<br>
|
||||
Unsere vollständige Datenschutzerklärung finden Sie auf unserer Webseite unter <a href="{{route('data_protected')}}">www.sterntours.de/datenschutz</a> <br>
|
||||
<br>
|
||||
Hinweis nach § 37 VSBG: Anschrift Verbraucherschlichtungsstelle: Allgemeine
|
||||
Verbraucherschlichtungsstelle des Zentrums für Schlichtung e.V.,
|
||||
Straßburger Str. 8, 77694 Kehl, www.verbraucher-schlichter.de
|
||||
Unser Unternehmen ist zur Teilnahme an einem Streitbeilegungsverfahren bei dieser
|
||||
Verbraucherschlichtungsstelle nicht verpflichtet und nimmt auch nicht freiwillig daran teil.
|
||||
<br><br>
|
||||
© 2020 alle Rechte vorbehalten
|
||||
<br>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
22
resources/views/emails/header.blade.php
Normal file
22
resources/views/emails/header.blade.php
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td style=" text-align:center;">
|
||||
<center>
|
||||
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="">
|
||||
<tbody class="">
|
||||
<tr class="">
|
||||
<td align="center" valign="top" style="font-size: 0px; text-align: center">
|
||||
<picture class="">
|
||||
<img src="https://mein.sterntours.de/images/stern-tours-logo.png" alt="STERN TOURS" style="border:none" width="260">
|
||||
</picture>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><br></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
@ -81,28 +81,7 @@
|
|||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="700" class="w320">
|
||||
<tr>
|
||||
<td align="center" valign="top">
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td style=" text-align:center;">
|
||||
<center>
|
||||
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="">
|
||||
<tbody class="">
|
||||
<tr class="">
|
||||
<td align="center" valign="top" style="font-size: 0px; text-align: center">
|
||||
<picture class="">
|
||||
<img src="https://mein.sterntours.de/images/stern-tours-logo.png" alt="STERN TOURS" style="border:none" width="260">
|
||||
</picture>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><br></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@include('emails.header')
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="100%"
|
||||
bgcolor="#ffffff">
|
||||
<tr>
|
||||
|
|
@ -117,28 +96,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" class="force-full-width"
|
||||
bgcolor="#f8f8f8" style="margin: 0 auto">
|
||||
<tr>
|
||||
<td style="color:#7B7B7E; font-size:14px; text-align: center">
|
||||
<br>
|
||||
STERN TOURS GmbH | Emser Straße 3 | 10719 Berlin<br>
|
||||
Tel: +49 (0) 30 700 94 100 | Fax: +49 (0) 30 700 94 1044 | stern@sterntours.de<br>
|
||||
<br>
|
||||
<a href="https://www.sterntours.de" style="color: #7B7B7E; text-decoration: underline;">www.sterntours.de</a>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#bbbbbb; font-size:12px; text-align: center">
|
||||
Geschäftsführer: Thomas Stern | Registergericht: Amtsgericht Charlottenburg | Registernummer: HRB 67111<br>
|
||||
Steuernummer: 27/545/30703 | UST-Ident.-Nr.: DE192609253 | Finanzamt: Wilmersdorf<br>
|
||||
<a href="{{route('data_protected')}}">Datenschutzerklärung</a> <br>
|
||||
© 2018 All Rights Reserved
|
||||
<br><br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@include('emails.footer')
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
|
|||
|
|
@ -69,28 +69,7 @@
|
|||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="700" class="w320">
|
||||
<tr>
|
||||
<td align="center" valign="top">
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="100%">
|
||||
<tr>
|
||||
<td style=" text-align:center;">
|
||||
<center>
|
||||
<table width="100%" cellpadding="0" cellspacing="0" border="0" class="">
|
||||
<tbody class="">
|
||||
<tr class="">
|
||||
<td align="center" valign="top" style="font-size: 0px; text-align: center">
|
||||
<picture class="">
|
||||
<img src="https://mein.sterntours.de/images/stern-tours-logo.png" alt="STERN TOURS" style="border:none" width="260">
|
||||
</picture>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><br></td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</center>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@include('emails.header')
|
||||
<table style="margin: 0 auto;" cellpadding="0" cellspacing="0" width="100%"
|
||||
bgcolor="#ffffff">
|
||||
<tr>
|
||||
|
|
@ -204,28 +183,7 @@
|
|||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<table cellpadding="0" cellspacing="0" class="force-full-width"
|
||||
bgcolor="#f8f8f8" style="margin: 0 auto">
|
||||
<tr>
|
||||
<td style="color:#7B7B7E; font-size:14px; text-align: center">
|
||||
<br>
|
||||
STERN TOURS GmbH | Emser Straße 3 | 10719 Berlin<br>
|
||||
Tel: +49 (0) 30 700 94 100 | Fax: +49 (0) 30 700 94 1044 | stern@sterntours.de<br>
|
||||
<br>
|
||||
<a href="https://www.sterntours.de" style="color: #7B7B7E; text-decoration: underline;">www.sterntours.de</a>
|
||||
<br>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td style="color:#bbbbbb; font-size:12px; text-align: center">
|
||||
Geschäftsführer: Thomas Stern | Registergericht: Amtsgericht Charlottenburg | Registernummer: HRB 67111<br>
|
||||
Steuernummer: 27/545/30703 | UST-Ident.-Nr.: DE192609253 | Finanzamt: Wilmersdorf<br>
|
||||
<a href="{{route('data_protected')}}">Datenschutzerklärung</a> <br>
|
||||
© 2018 All Rights Reserved
|
||||
<br><br>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
@include('emails.footer')
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
|
|||
|
|
@ -154,7 +154,7 @@
|
|||
|
||||
<!-- Application javascripts -->
|
||||
<script src="{{ mix('/js/application.js') }}"></script>
|
||||
<script src="{{ asset('/js/custom.js?v1') }}{{ get_file_last_time('/js/custom.js') }}"></script>
|
||||
<script src="{{ asset('/js/custom.js?v2') }}{{ get_file_last_time('/js/custom.js') }}"></script>
|
||||
|
||||
|
||||
@include('asset.js')
|
||||
|
|
|
|||
|
|
@ -9,7 +9,7 @@
|
|||
<ul class="sidenav-inner{{ empty($layout_sidenav_horizontal) ? ' py-1' : '' }}">
|
||||
|
||||
<li class="sidenav-item{{ Request::is('home') ? ' active' : '' }}">
|
||||
<a href="{{ route('home') }}" class="sidenav-link"><i class="sidenav-icon ion ion-ios-home"></i><div>{{__('Home')}}</div></a>
|
||||
<a href="{{ route('home') }}" class="sidenav-link"><i class="sidenav-icon ion ion-md-apps"></i><div>{{__('Home')}}</div></a>
|
||||
</li>
|
||||
|
||||
@if(Auth::user()->isPermission('my-dat'))
|
||||
|
|
@ -23,7 +23,7 @@
|
|||
<li class="sidenav-divider mb-1"></li>
|
||||
<li class="sidenav-header small font-weight-semibold">ADMIN CRM</li>
|
||||
@if(Auth::user()->isPermission('crm-tp'))
|
||||
<li class="sidenav-item{{ Request::is('travel/*') ? ' open' : '' }} {{ Request::is('drafts') ? ' open' : '' }}">
|
||||
<li class="sidenav-item{{ Request::is(['travel/*', 'drafts', 'draft/*']) ? ' open' : '' }}">
|
||||
<a href="javascript:void(0)" class="sidenav-link sidenav-toggle">
|
||||
<i class="sidenav-icon ion ion-ios-airplane"></i>
|
||||
<div>Reiseprogramme</div>
|
||||
|
|
@ -35,7 +35,7 @@
|
|||
</li>
|
||||
@endif
|
||||
@if(Auth::user()->isPermission('crm-tp-dr'))
|
||||
<li class="sidenav-item{{ Request::is('drafts') ? ' active' : '' }}">
|
||||
<li class="sidenav-item{{ Request::is(['drafts','draft/*']) ? ' active' : '' }}">
|
||||
<a href="{{ route('drafts') }}" class="sidenav-link"><i class="sidenav-icon ion ion-md-paper"></i><div>Vorlagen</div></a>
|
||||
</li>
|
||||
@endif
|
||||
|
|
@ -43,7 +43,7 @@
|
|||
</li>
|
||||
@endif
|
||||
@if(Auth::user()->isPermission('crm-bo'))
|
||||
<li class="sidenav-item{{ Request::is('requests') ? ' open' : '' }} {{ Request::is('bookings') ? ' open' : '' }} {{ Request::is('booking/*') ? ' open' : '' }}">
|
||||
<li class="sidenav-item{{ Request::is(['requests', 'bookings', 'booking/*', 'leads', 'lead/*', 'customers', 'customer/*','customer_mails', 'customer_mail/*']) ? ' open' : '' }}">
|
||||
<a href="javascript:void(0)" class="sidenav-link sidenav-toggle">
|
||||
<i class="sidenav-icon ion ion-md-bed"></i>
|
||||
<div>Buchungen</div>
|
||||
|
|
@ -51,22 +51,37 @@
|
|||
<ul class="sidenav-menu">
|
||||
@if(Auth::user()->isPermission('crm-bo-re'))
|
||||
<li class="sidenav-item{{ Request::is('requests') ? ' active' : '' }}">
|
||||
<a href="{{ route('requests') }}" class="sidenav-link"><i class="sidenav-icon ion ion-md-search"></i><div>Anfragen</div></a>
|
||||
<a href="{{ route('requests') }}" class="sidenav-link"><i class="sidenav-icon ion ion-md-search"></i><div>Übersicht</div></a>
|
||||
</li>
|
||||
@endif
|
||||
@if(Auth::user()->isPermission('crm-bo-bo'))
|
||||
<li class="sidenav-item{{ Request::is('bookings') ? ' active' : '' }} {{ Request::is('booking/*') ? ' active' : '' }}">
|
||||
<a href="{{ route('bookings') }}" class="sidenav-link"><i class="sidenav-icon ion ion-md-bed"></i><div>Buchungen</div></a>
|
||||
<li class="sidenav-item{{ Request::is(['bookings', 'booking/*']) ? ' active' : '' }}">
|
||||
<a href="{{ route('bookings') }}" class="sidenav-link"><i class="sidenav-icon ion ion-ios-bed"></i><div>Buchungen</div></a>
|
||||
</li>
|
||||
@endif
|
||||
@if(Auth::user()->isPermission('crm-bo-le'))
|
||||
<li class="sidenav-item{{ Request::is(['leads', 'lead/*']) ? ' active' : '' }}">
|
||||
<a href="{{ route('leads') }}" class="sidenav-link"><i class="sidenav-icon ion ion-ios-contact"></i><div>Anfragen</div></a>
|
||||
</li>
|
||||
@endif
|
||||
@if(Auth::user()->isPermission('crm-bo-cu'))
|
||||
<li class="sidenav-item{{ Request::is(['customers', 'customer/*']) ? ' active' : '' }}">
|
||||
<a href="{{ route('customers') }}" class="sidenav-link"><i class="sidenav-icon ion ion-ios-people"></i><div>Kunden</div></a>
|
||||
</li>
|
||||
@endif
|
||||
@if(Auth::user()->isPermission('crm-bo-ma'))
|
||||
<li class="sidenav-item{{ Request::is(['customer_mails', 'customer_mail/*']) ? ' active' : '' }}">
|
||||
<a href="{{ route('customer_mails') }}" class="sidenav-link"><i class="sidenav-icon ion ion-ios-mail"></i><div>Kunden Mails</div></a>
|
||||
</li>
|
||||
@endif
|
||||
</ul>
|
||||
</li>
|
||||
@endif
|
||||
@if(Auth::user()->isPermission('crm-cm'))
|
||||
<li class="sidenav-item{{ Request::is('travel_users') ? ' open' : '' }} {{ Request::is('travel_user/*') ? ' open' : '' }} {{ Request::is('booking/*') ? ' open' : '' }} {{ Request::is('travel_user_booking_fewos') ? ' open' : '' }} {{ Request::is('travel_user_booking_fewo/*') ? ' open' : '' }}">
|
||||
<li class="sidenav-item{{ Request::is(['travel_users', 'travel_user/*', 'travel_user_booking_fewos', 'travel_user_booking_fewo/*']) ? ' open' : '' }}">
|
||||
<a href="javascript:void(0)" class="sidenav-link sidenav-toggle">
|
||||
<i class="sidenav-icon ion ion-ios-people"></i>
|
||||
<div>Kundenverwaltung</div>
|
||||
<i class="sidenav-icon ion ion-ios-home"></i>
|
||||
<div>Buchungen FeWo</div>
|
||||
</a>
|
||||
<ul class="sidenav-menu">
|
||||
@if(Auth::user()->isPermission('crm-cm-cf'))
|
||||
|
|
@ -186,9 +201,6 @@
|
|||
@endif
|
||||
</ul>
|
||||
</li>
|
||||
|
||||
<li class="sidenav-item">
|
||||
</li>
|
||||
@endif
|
||||
@endif
|
||||
@endif
|
||||
|
|
|
|||
79
resources/views/lead/detail.blade.php
Executable file
79
resources/views/lead/detail.blade.php
Executable file
|
|
@ -0,0 +1,79 @@
|
|||
@extends('layouts.layout-2')
|
||||
|
||||
@section('content')
|
||||
|
||||
<style>
|
||||
body {
|
||||
-webkit-touch-callout: none;
|
||||
-webkit-user-select: none;
|
||||
-khtml-user-select: none;
|
||||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
user-select: none;
|
||||
}
|
||||
.btn-xs {
|
||||
line-height: 1.3em;
|
||||
}
|
||||
.table tbody + tbody {
|
||||
border-top: 1px solid #9c9c9c;
|
||||
}
|
||||
.table th, .table td {
|
||||
border-top: none;
|
||||
}
|
||||
.table tr.border-none td, .table tr.border-none th {
|
||||
border-top: none;
|
||||
}
|
||||
.table .thead-dark th {
|
||||
color: #4E5155;
|
||||
background-color: rgba(24, 28, 33, 0.1);
|
||||
border-color: rgba(63, 69, 74, 0.1);
|
||||
}
|
||||
|
||||
.input-group-text {
|
||||
padding: 0.438rem 0.475rem;
|
||||
}
|
||||
|
||||
|
||||
</style>
|
||||
|
||||
<h4 class="font-weight-bold py-3 mb-1">
|
||||
Anfrage verwalten
|
||||
</h4>
|
||||
|
||||
|
||||
{!! Form::open(['url' => route('lead_detail', [$id]), 'class' => 'form-horizontal', 'id'=>'lead-form-validation']) !!}
|
||||
|
||||
<input type="hidden" name="id" id="id" value="{{$id}}">
|
||||
|
||||
<!-- draft -->
|
||||
<div class="card mb-2">
|
||||
<div class="card-body row">
|
||||
|
||||
<div class="form-group col-sm-6">
|
||||
<label class="form-label" for="lead_id">{{ __('Nr.') }}*</label>
|
||||
{{ Form::text('id', $lead->id, array('placeholder'=>__('Nr.'), 'class'=>'form-control', 'id'=>'lead_id', 'readonly')) }}
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="text-left mt-3">
|
||||
<button type="submit" name="action" value="saveAll" class="btn btn-submit">{{ __('save changes') }}</button>
|
||||
<a href="{{route('leads')}}" class="btn btn-default">{{ __('zur Übersicht') }}</a>
|
||||
<a href="{{ make_old_url('/index.php/leads/'.$lead->id.'/edit') }}" class="btn btn-default float-right">{{ __('zurück ins CRM v2') }}</a>
|
||||
|
||||
</div>
|
||||
|
||||
{!! Form::close() !!}
|
||||
|
||||
|
||||
<script>
|
||||
$(document).ready(function() {
|
||||
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
@endsection
|
||||
58
resources/views/lead/index.blade.php
Executable file
58
resources/views/lead/index.blade.php
Executable file
|
|
@ -0,0 +1,58 @@
|
|||
@extends('layouts.layout-2')
|
||||
|
||||
@section('content')
|
||||
|
||||
<h4 class="font-weight-bold py-3 mb-4">
|
||||
{{ __('Anfragen') }}
|
||||
</h4>
|
||||
|
||||
<div class="card">
|
||||
<div class="card-datatable table-responsive">
|
||||
<table class="datatables-leads table table-striped table-bordered">
|
||||
|
||||
<thead>
|
||||
<tr>
|
||||
<th style="max-width: 60px;"> </th>
|
||||
<th>{{__('LeadID')}}</th>
|
||||
<th>{{__('KundenID')}}</th>
|
||||
<th>{{__('Vorname')}}</th>
|
||||
<th>{{__('Nachname')}}</th>
|
||||
<th>{{__('Anfrage-Datum')}}</th>
|
||||
<th>{{__('Sachbearbeiter')}}</th>
|
||||
<th>{{__('Status')}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
$( document ).ready(function() {
|
||||
$('.datatables-leads').dataTable({
|
||||
"processing": true,
|
||||
"serverSide": true,
|
||||
"ajax": '{!! route('data_table_leads') !!}',
|
||||
"order": [[ 1, "desc" ]],
|
||||
"columns": [
|
||||
{ data: 'action_edit', orderable: false, searchable: false},
|
||||
{ data: 'id', name: 'id' },
|
||||
{ data: 'customer_id', name: 'customer_id' },
|
||||
{ data: 'customer.firstname', name: 'customer.firstname' },
|
||||
{ data: 'customer.name', name: 'customer.name' },
|
||||
{ data: 'request_date', name: 'request_date' },
|
||||
{ data: 'sf_guard_user.last_name', name: 'sf_guard_user.last_name', searchable: false },
|
||||
{ data: 'status.name', name: 'status.name' },
|
||||
|
||||
],
|
||||
"bLengthChange": false,
|
||||
"iDisplayLength": 100,
|
||||
"language": {
|
||||
"url": "/js/German.json"
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
@endsection
|
||||
|
|
@ -6,100 +6,101 @@
|
|||
</h4>
|
||||
|
||||
<div class="card">
|
||||
<div class="ui-bordered px-4 pt-3 mb-0">
|
||||
<div class="form-row align-items-center">
|
||||
<div class="col-md-4 mb-4">
|
||||
<label class="form-label" for="travel_option_search">Filter Anreise</label>
|
||||
<select class="custom-select" name="travel_option_search" id="travel_option_search">
|
||||
<option value="">Filter aus</option>
|
||||
<option value="before_2">Anreise vor 2 Monaten</option>
|
||||
<option value="brefore_1">Anreise vor 1 Monat</option>
|
||||
<option value="on_site">vor Ort</option>
|
||||
<option value="after_1">Anreise in 1 Monat</option>
|
||||
<option value="after_1">Anreise in 2 Monat</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-4 mb-4">
|
||||
<label class="form-label">Filter Anreise Datum</label>
|
||||
<div class="row">
|
||||
<div class="input-group col-6 pr-0">
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text">ab</span>
|
||||
</div>
|
||||
<input class="form-control datepicker-base" name="arrival_start_date" type="text" value="">
|
||||
</div>
|
||||
|
||||
<div class="input-group col-6 pl-1">
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text">bis</span>
|
||||
</div>
|
||||
<input class="form-control datepicker-base" name="arrival_end_date" type="text" value="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 mb-4">
|
||||
<label class="form-label">Filter Abreise Datum</label>
|
||||
<div class="row">
|
||||
<div class="input-group col-6 pr-0">
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text">ab</span>
|
||||
</div>
|
||||
<input class="form-control datepicker-base" name="departure_start_date" type="text" value="">
|
||||
</div>
|
||||
<div class="card-header">
|
||||
<div class="">
|
||||
<div class="form-row align-items-center">
|
||||
<div class="col-md-4 mb-4">
|
||||
<label class="form-label" for="travel_option_search">Filter Anreise</label>
|
||||
<select class="custom-select" name="travel_option_search" id="travel_option_search">
|
||||
<option value="">Filter aus</option>
|
||||
<option value="before_2">Anreise vor 2 Monaten</option>
|
||||
<option value="brefore_1">Anreise vor 1 Monat</option>
|
||||
<option value="on_site">vor Ort</option>
|
||||
<option value="after_1">Anreise in 1 Monat</option>
|
||||
<option value="after_1">Anreise in 2 Monat</option>
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-4 mb-4">
|
||||
<label class="form-label">Filter Anreise Datum</label>
|
||||
<div class="row">
|
||||
<div class="input-group col-6 pr-0">
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text">ab</span>
|
||||
</div>
|
||||
<input class="form-control datepicker-base" name="arrival_start_date" type="text" value="">
|
||||
</div>
|
||||
|
||||
<div class="input-group col-6 pl-1">
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text">bis</span>
|
||||
</div>
|
||||
<input class="form-control datepicker-base" name="departure_end_date" type="text" value="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row align-items-center">
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="form-label" for="travel_option_country_id">Filter Reiseland</label>
|
||||
<select class="custom-select" name="travel_option_country_id" id="travel_option_country_id">
|
||||
<option value="">Filter aus</option>
|
||||
@foreach($travel_countries as $id=>$name)
|
||||
<option value="{{$id}}">{{$name}}</option>
|
||||
@endforeach
|
||||
</select>
|
||||
<div class="input-group col-6 pl-1">
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text">bis</span>
|
||||
</div>
|
||||
<input class="form-control datepicker-base" name="arrival_end_date" type="text" value="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-4 mb-4">
|
||||
<label class="form-label">Filter Abreise Datum</label>
|
||||
<div class="row">
|
||||
<div class="input-group col-6 pr-0">
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text">ab</span>
|
||||
</div>
|
||||
<input class="form-control datepicker-base" name="departure_start_date" type="text" value="">
|
||||
</div>
|
||||
|
||||
<div class="input-group col-6 pl-1">
|
||||
<div class="input-group-prepend">
|
||||
<span class="input-group-text">bis</span>
|
||||
</div>
|
||||
<input class="form-control datepicker-base" name="departure_end_date" type="text" value="">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="form-label" for="travel_option_agenda_id">Filter Programm</label>
|
||||
<select class="custom-select" name="travel_option_agenda_id" id="travel_option_agenda_id">
|
||||
<option value="">Filter aus</option>
|
||||
</select>
|
||||
<div class="form-row align-items-center">
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="form-label" for="travel_option_country_id">Filter Reiseland</label>
|
||||
<select class="custom-select" name="travel_option_country_id" id="travel_option_country_id">
|
||||
<option value="">Filter aus</option>
|
||||
@foreach($travel_countries as $id=>$name)
|
||||
<option value="{{$id}}">{{$name}}</option>
|
||||
@endforeach
|
||||
</select>
|
||||
</div>
|
||||
<div class="col-md-6 mb-4">
|
||||
<label class="form-label" for="travel_option_agenda_id">Filter Programm</label>
|
||||
<select class="custom-select" name="travel_option_agenda_id" id="travel_option_agenda_id">
|
||||
<option value="">Filter aus</option>
|
||||
</select>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row align-items-center">
|
||||
<div class="col-5 col-sm-2 mb-4">
|
||||
<label class="form-label">AnfrageID</label>
|
||||
<input class="form-control full_search" name="full_lead_id_search" placeholder="suche" type="text" value="">
|
||||
</div>
|
||||
<div class="col-6 col-sm-3 mb-4">
|
||||
<label class="form-label">Vorname</label>
|
||||
<input class="form-control full_search" name="full_firstname_search" placeholder="suche" type="text" value="">
|
||||
</div>
|
||||
<div class="col-6 col-sm-3 mb-4">
|
||||
<label class="form-label">Nachname</label>
|
||||
<input class="form-control full_search" name="full_lastname_search" placeholder="suche" type="text" value="">
|
||||
</div>
|
||||
|
||||
<div class="col-5 col-sm-2 mb-4">
|
||||
<label class="form-label">BuchungsID</label>
|
||||
<input class="form-control full_search" name="full_booking_id_search" placeholder="suche" type="text" value="">
|
||||
</div>
|
||||
<div class="col-2 col-sm-2 mb-4 mt-4">
|
||||
<a href="{{ route('requests') }}" class="btn icon-btn btn-sm btn-outline-dark float-right">
|
||||
<span class="fa fa-sync"></span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-row align-items-center">
|
||||
<div class="col-5 col-sm-2 mb-4">
|
||||
<label class="form-label">LeadID</label>
|
||||
<input class="form-control full_search" name="full_lead_id_search" placeholder="suche" type="text" value="">
|
||||
</div>
|
||||
<div class="col-6 col-sm-3 mb-4">
|
||||
<label class="form-label">Vorname</label>
|
||||
<input class="form-control full_search" name="full_firstname_search" placeholder="suche" type="text" value="">
|
||||
</div>
|
||||
<div class="col-6 col-sm-3 mb-4">
|
||||
<label class="form-label">Nachname</label>
|
||||
<input class="form-control full_search" name="full_lastname_search" placeholder="suche" type="text" value="">
|
||||
</div>
|
||||
|
||||
<div class="col-5 col-sm-2 mb-4">
|
||||
<label class="form-label">BookingID</label>
|
||||
<input class="form-control full_search" name="full_booking_id_search" placeholder="suche" type="text" value="">
|
||||
</div>
|
||||
<div class="col-2 col-sm-2 mb-4 mt-4">
|
||||
<a href="{{ route('requests') }}" class="btn icon-btn btn-sm btn-outline-dark float-right">
|
||||
<span class="fa fa-sync"></span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="card-datatable table-responsive py-2">
|
||||
<input type="hidden" name="sort_travel_country_id" value="">
|
||||
<input type="hidden" name="sort_travelagenda_id" value="">
|
||||
|
|
@ -108,14 +109,14 @@
|
|||
<input type="hidden" name="sort_lead_status_id" value="">
|
||||
|
||||
<table id="datatables-requests" class="table table-striped table-bordered">
|
||||
|
||||
<thead>
|
||||
<tr>
|
||||
<!--<th style="max-width: 1px;"> </th> -->
|
||||
<th>{{__('LeadID')}}</th>
|
||||
<th style="max-width: 10px;"> </th>
|
||||
<th>{{__('AnfrageID')}}</th>
|
||||
<th>{{__('Vorname')}}</th>
|
||||
<th>{{__('Nachname')}}</th>
|
||||
<th>{{__('BookingID')}}</th>
|
||||
<th style="max-width: 10px;"> </th>
|
||||
<th>{{__('BuchungsID')}}</th>
|
||||
<th>{{__('Reiseland')}}</th>
|
||||
<th>{{__('Programm')}}</th>
|
||||
{{--<th>{{__('Kategorie')}}</th>--}}
|
||||
|
|
@ -128,8 +129,18 @@
|
|||
</thead>
|
||||
</table>
|
||||
</div>
|
||||
<div class="card-footer d-flex flex-wrap justify-content-between align-items-center px-0 pt-0 pb-3">
|
||||
<div class="px-4 pt-3">
|
||||
</div>
|
||||
<div class="px-4 pt-3">
|
||||
<button type="button" class="btn btn-info" data-toggle="modal" data-target="#modals-load-next"
|
||||
data-id="new"
|
||||
data-model="customerMail"
|
||||
data-action="send-customer-mail"
|
||||
data-route="{{ route('requests_modal_load') }}"><i class="ion ion-md-mail-open"></i> E-Mail-Nachricht an Auswahl (max. 50)</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<script>
|
||||
$( document ).ready(function() {
|
||||
|
||||
|
|
@ -161,10 +172,11 @@
|
|||
}
|
||||
},
|
||||
"columns": [
|
||||
// { data: 'action_edit', orderable: false, searchable: false},
|
||||
{ data: 'action_lead_edit', orderable: false, searchable: false},
|
||||
{ data: 'lead_id', name: 'lead_id' },
|
||||
{ data: 'participant_firstname', name: 'participant_firstname' },
|
||||
{ data: 'participant_name', name: 'participant_name' },
|
||||
{ data: 'action_booking_edit', orderable: false, searchable: false},
|
||||
{ data: 'id', name: 'id' },
|
||||
{ data: 'travel_country_id', name: 'travel_country_id', orderable: false },
|
||||
{ data: 'travelagenda_id', name: 'travelagenda_id', orderable: false },
|
||||
|
|
@ -173,16 +185,14 @@
|
|||
{ data: 'travel_documents', name: 'travel_documents', orderable: false },
|
||||
{ data: 'sf_guard_user_id', name: 'sf_guard_user_id', orderable: false },
|
||||
{ data: 'lead.status_id', name: 'lead.status_id', orderable: false },
|
||||
|
||||
],
|
||||
"bLengthChange": false,
|
||||
"iDisplayLength": 50,
|
||||
"orderSequence": ["desc", "asc"],
|
||||
"order": [[ 3, "desc" ]],
|
||||
"order": [[ 5, "desc" ]],
|
||||
"language": {
|
||||
"url": "/js/German.json"
|
||||
},
|
||||
|
||||
initComplete: function () {
|
||||
this.api().columns(8).every( function () {
|
||||
var column = this;
|
||||
|
|
@ -196,13 +206,12 @@
|
|||
column.data().unique().sort().each( function ( d, j ) {
|
||||
if(d !== ""){
|
||||
var text = $(d).data('order') ? "Ja" : "Nein";
|
||||
if(text != "" && text != "-"){
|
||||
if(text !== "" && text !== "-"){
|
||||
select.append( '<option value="'+$(d).data('order')+'">'+ text+'</option>' );
|
||||
}
|
||||
}
|
||||
} );
|
||||
} );
|
||||
|
||||
this.api().columns(9).every( function () {
|
||||
var column = this;
|
||||
var title = $(column.header()).html();
|
||||
|
|
@ -215,7 +224,7 @@
|
|||
column.data().unique().sort().each( function ( d, j ) {
|
||||
if(d !== ""){
|
||||
var text = $(d+' span').text();
|
||||
if(text != "" && text != "-"){
|
||||
if(text !== "" && text !== "-"){
|
||||
select.append( '<option value="'+$(d).data('order')+'">'+ $(d+' span').text()+'</option>' );
|
||||
}
|
||||
}
|
||||
|
|
@ -224,8 +233,7 @@
|
|||
$('.selectpicker').selectpicker();
|
||||
},
|
||||
drawCallback: function () {
|
||||
|
||||
console.log($('#travel_option_agenda_id').prop('disabled'));
|
||||
//console.log($('#travel_option_agenda_id').prop('disabled'));
|
||||
//only when is disabled, refesh list is load by other filter.
|
||||
if($('#travel_option_agenda_id').prop('disabled')) {
|
||||
var data = table.ajax.params();
|
||||
|
|
@ -244,10 +252,10 @@
|
|||
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
|
||||
},
|
||||
success: function (data) {
|
||||
console.log(data);
|
||||
// console.log(data);
|
||||
var select = $('#travel_option_agenda_id');
|
||||
select.empty().append('<option value="">Filter aus</option>');
|
||||
console.log(select);
|
||||
// console.log(select);
|
||||
$.each(data, function (i, item) {
|
||||
select.append('<option value="' + i + '">' + item + '</option>');
|
||||
});
|
||||
|
|
@ -261,14 +269,12 @@
|
|||
}
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
function clearTravelOptionAgenda(){
|
||||
$('#travel_option_agenda_id').empty().prop('disabled', true);
|
||||
}
|
||||
|
||||
$('#travel_option_search').on('change', function(){
|
||||
if($(this).val() !== ""){
|
||||
$('.datepicker-base').removeClass('active');
|
||||
|
|
@ -283,17 +289,13 @@
|
|||
clearTravelOptionAgenda();
|
||||
table.order( [ 3, 'desc' ] ).draw();
|
||||
});
|
||||
|
||||
$('#travel_option_country_id').on('change', function(){
|
||||
clearTravelOptionAgenda();
|
||||
table.order( [ 3, 'desc' ] ).draw();
|
||||
});
|
||||
|
||||
$('#travel_option_agenda_id').on('change', function(){
|
||||
table.order( [ 3, 'desc' ] ).draw();
|
||||
});
|
||||
|
||||
|
||||
$('.datepicker-base').on('change', function(){
|
||||
if($(this).val() != ""){
|
||||
$('#travel_option_search').removeClass('active');
|
||||
|
|
@ -308,14 +310,62 @@
|
|||
clearTravelOptionAgenda();
|
||||
table.order( [ 3, 'desc' ] ).draw();
|
||||
});
|
||||
|
||||
|
||||
$('.full_search').on('keyup', function(){
|
||||
clearTravelOptionAgenda();
|
||||
table.order( [ 3, 'desc' ] ).draw();
|
||||
});
|
||||
|
||||
function loadModalInner(self, data){
|
||||
|
||||
var url = data.route,
|
||||
contentType = 'application/x-www-form-urlencoded; charset=UTF-8';
|
||||
$.ajax({
|
||||
url: url,
|
||||
data: data,
|
||||
type: "POST",
|
||||
dataType: "json",
|
||||
cache: false,
|
||||
contentType: contentType,
|
||||
encode: true,
|
||||
headers: {
|
||||
'X-CSRF-TOKEN': $('meta[name="csrf-token"]').attr('content')
|
||||
},
|
||||
success: function(data) {
|
||||
$(data.response.target).find('.modal-dialog').html(data.html);
|
||||
$('.selectpicker').selectpicker('refresh');
|
||||
//datepicker_birthday_init();
|
||||
},
|
||||
error: function(xhr, status, errorThrown) {
|
||||
console.log(xhr);
|
||||
console.log(xhr.responseText);
|
||||
console.log(errorThrown);
|
||||
console.log("Sorry, there was a problem!");
|
||||
}
|
||||
});
|
||||
return false;
|
||||
}
|
||||
|
||||
$('#modals-load-next').on('show.bs.modal', function (event) {
|
||||
var button = $(event.relatedTarget);
|
||||
if (!button.data('id')) {
|
||||
return;
|
||||
}
|
||||
//var data = {};
|
||||
var data = table.ajax.params();
|
||||
data.action = button.data('action');
|
||||
data.route = button.data('route');
|
||||
data.target = button.data('target');
|
||||
//console.log(data);
|
||||
loadModalInner(this, data);
|
||||
|
||||
});
|
||||
});
|
||||
</script>
|
||||
<div class="modal fade" id="modals-load-next">
|
||||
<div class="modal-dialog modal-lg">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
|
|
|||
40
resources/views/request/modal-mail.blade.php
Normal file
40
resources/views/request/modal-mail.blade.php
Normal file
|
|
@ -0,0 +1,40 @@
|
|||
{!! Form::open(['url' => $url, 'class' => 'modal-content', 'onsubmit'=>'return confirm("E-Mail wirklich senden?");']) !!}
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title">
|
||||
{{$data['title']}}
|
||||
</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">×</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-group col">
|
||||
<label for="to" class="form-label">E-Mail senden an:</label>
|
||||
@foreach($value->customers as $key=>$val)
|
||||
<label class="custom-control custom-checkbox mt-2" style="margin-right: 20px;">
|
||||
{!! Form::checkbox('send_mail_to['.$key.']', 1, $key, ['class'=>'custom-control-input']) !!}
|
||||
<span class="custom-control-label">{{$val}}</span>
|
||||
</label>
|
||||
@endforeach
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-row">
|
||||
<div class="form-group col">
|
||||
<label for="subject" class="form-label">Betreff</label>
|
||||
{{ Form::text('subject', '', array('placeholder'=>'', 'id'=>'subject', 'class'=>'form-control', 'required')) }}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group mb-1">
|
||||
<label class="form-label" for="message">Nachricht</label>
|
||||
{{ Form::textarea('message', $value->message, array('class'=>'form-control', 'rows'=>15)) }}
|
||||
</div>
|
||||
<p>Platzhalter: #geehrte/r# #Anrede# #Vorname# #Nachname# #Reiseland# #Programm# </p>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-default" data-dismiss="modal">schließen</button>
|
||||
<button type="submit" class="btn btn-primary"><i class="ion ion-ios-mail-open"></i> senden</button>
|
||||
</div>
|
||||
{!! Form::close() !!}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue