Panduan Penggunaan

Ikuti langkah singkat berikut untuk mulai membuat template.

PDF Integration Guide

Welcome to the PDF Integration Guide! This document will walk you through the process of generating professional-quality PDF documents using Anywhere. Whether you're setting up basic configurations, defining your templates, or integrating PDF generation into your codebase, we'll help you create dynamic and pixel-perfect PDFs with ease.


1. Basic Configuration

To begin generating PDF documents, you'll first need to create a PDF template. Simply click New PDF in your Anywhere dashboard. From there, you can configure the settings to meet your specific requirements. Below are the key template configurations for PDF generation:


2. Code Integration

Once your PDF template is configured, integrating PDF generation into your application is straightforward. Download the AnywhereWrapper, and you can write code similar to the example below:

require 'Wrapper.php';

$pdf = new Pdf(Wrapper::POST);
$pdf->setValue('Name', 'Someone');
$pdf->setValue('Age', '22');
$pdf->Send(API_URL);

If your request is successful, the browser will display the PDF file based on your template and provided data.


We hope this guide empowers you to create stunning and functional PDF documents with Anywhere! Feel free to explore and enhance your reporting capabilities. Happy coding!


Mail Integration Guide

Welcome to the Mail Integration Guide! This document will walk you through setting up and sending emails effortlessly using Anywhere. Whether you're configuring your basic mail settings, designing dynamic templates, or integrating email sending into your code, we'll ensure your messages reach their destination smoothly. Let's make email communication simple and efficient!


1. Basic Configuration

To start sending emails, you'll first need to create an email template. Simply click New MAIL in your Anywhere dashboard. From there, you can configure the settings to suit your specific needs. Below are the key template configurations for SMTP email:


2. Code Integration

Once your template is configured, sending emails from your application is straightforward. Download the AnywhereWrapper, and you can send emails using code similar to the example below:

require 'Wrapper.php';

$mail = new Mail(Wrapper::POST);
$mail->setTo('example@gmail.com');
$mail->setCc('example@outlook.com');
$mail->setBcc('example@yahoo.co.id');

$mail->setSubject('Anywhere Wrapper');
$mail->setValue('Name', 'Anywhere');
$mail->setValue('Age', '22');

$mail->setAttachment('qrcode.png', 'http://oaas-divelliz.rhcloud.com/qr/render?data=admin@example.co.id');
$mail->setAttachment('qrcode1.png', 'http://oaas-divelliz.rhcloud.com/qr/render?data=developer@example.co.id');

$mail->Send(API_URL);

Important Note: Emails typically take a few minutes to arrive at their destination. Please be patient after sending.

If your request is successful, the email will be sent to the address specified in setTo().


We hope this guide helps you streamline your email communication through Anywhere! Should you have any questions, feel free to reach out. Happy emailing!


Excel Integration Guide

Welcome to the Excel Integration Guide! This document will walk you through the process of setting up and utilizing Anywhere to effortlessly generate Excel files. Whether you're configuring basic settings, defining your templates, or integrating with your codebase, we've got you covered. Let's make Excel generation simple and efficient!


1. Basic Configuration

Getting started with Excel generation is a breeze! Here, you'll find the fundamental steps to ensure your Anywhere platform is ready to produce stunning spreadsheets.


2. Template Configuration

Templates are the heart of dynamic Excel generation. They define the structure, styling, and data placement within your spreadsheets. Think of them as blueprints for your Excel files!


3. Code Integration

Now for the exciting part: integrating Excel generation into your application! This section covers how to trigger Excel creation directly from your codebase using the Anywhere API.


We hope this guide makes your Excel generation journey smoother and more enjoyable. Happy coding!


Image Integration Guide

Welcome to the Image Integration Guide! This document will help you understand how to use Anywhere to generate dynamic images for your applications. From basic setup to advanced template configurations and seamless code integration, we'll guide you through making image generation simple, efficient, and visually appealing.


1. Basic Configuration

Starting with image generation is straightforward. These are the essential steps to get your Anywhere platform ready to create custom images.


2. Template Configuration

Image templates are your creative canvas for dynamic visuals. They define the layout, elements, text, and styles that will be combined with your data to produce unique images.


3. Code Integration

This section details how to integrate dynamic image generation directly into your application's codebase using the Anywhere API.


We're excited to see the amazing dynamic images you'll create! Feel free to explore the possibilities and enhance your application's visual appeal. Happy coding!


Self Sign

Konfigurasi Dasar

Konfigurasi Template

Konfigurasi Kode