PATH:
home
/
lab2454c
/
sothebankuab.com
/
wp-content
/
plugins
/
sendgrid-email-delivery-simplified
/
view
<?php ?> <p> Email Delivery. Simplified. </p> <p> SendGrid's cloud-based email infrastructure relieves businesses of the cost and complexity of maintaining custom email systems. SendGrid provides reliable delivery, scalability and real-time analytics along with flexible APIs that make custom integration a breeze. </p> <p> Before to use this plugin, you'll need to create your very own SendGrid account. Go ahead and do so at <a href="http://sendgrid.com/partner/wordpress" target="_blank">http://sendgrid.com/partner/wordpress</a> </p> <p> To have the SendGrid plugin running after you activated it, please go to plugin's settings page and set the SendGrid credentials, and the way your email will be sent through SMTP or API. <br /> You can also set default values for the 'Name', 'Sending Address' and the 'Reply Address' in this page, so that you don\'t need to set these headers every time you want to send an email from your application. </p> <p> After you have done these configurations, all your emails sent from your WordPress installation will go through SendGrid. </p> <p> Now let see how simple is to send a text email: <br /> <div class="code"> <?php wp_mail('to@address.com\', 'Email Subject', 'Email Body'); ?> </div> <br /> Where: <br /> <ul> <li>$to - Array or comma-separated list of email addresses to send message.</li> <li>$subject - Email subject</li> <li>$message - Message contents></li> <li>$headers - Array or SendGrid\Email() object. Optional.</li> <li>$attachments - Array or "\n"/"," separated list of files to attach. Optional.</li> </ul> The wp_mail function is sending text emails as default. If you want to send an email with HTML content you have to set the content type to 'text/html' running <span class="code"> add_filter('wp_mail_content_type', 'set_html_content_type'); </span> function before to wp_mail() one. <br /> <br /> After wp_mail function you need to run the <span class="code"> remove_filter('wp_mail_content_type', 'set_html_content_type'); </span> to remove the 'text/html' filter to avoid conflicts -- http://core.trac.wordpress.org/ticket/23578 <br /> <br /> Example about how to send an HTML email using different headers: <br /> <br /> <b>Using array for $headers:</b> <br /> <div class="code"> $subject = 'test plugin' <br /> $message = 'testing wordpress plugin' <br /> $to = array('address1@sendgrid.com', 'Address2 <address2@sendgrid.com>', 'address3@sendgrid.com'); <br /> <br /> $headers = array() <br /> $headers[] = 'From: Me Myself <me@example.net>'; <br /> $headers[] = 'Cc: address4@sendgrid.com'; <br /> $headers[] = 'Bcc: address5@sendgrid.com'; <br /> $headers[] = 'unique-args:customer=mycustomer;location=mylocation'; <br /> $headers[] = 'categories: category1, category2'; <br /> $headers[] = 'template: templateID'; <br /> <br /> $attachments = array('/tmp/img1.jpg', '/tmp/img2.jpg'); <br /> <br /> add_filter('wp_mail_content_type', 'set_html_content_type'); <br /> $mail = wp_mail($to, $subject, $message, $headers, $attachments); <br /> remove_filter('wp_mail_content_type', 'set_html_content_type'); </div> <br/> <b>Using SendGrid\Email() for $headers:</b> <br /> <div class="code"> $subject = 'Test SendGrid plugin'; <br /> $message = 'testing WordPress plugin'; <br /> $to = array('address1@sendgrid.com', 'Address2 <address2@sendgrid.com>', 'address3@sendgrid.com'); <br /> <br /> $headers = new SendGrid\Email(); <br /> $headers<br /> ->setFromName("Me Myself") <br /> ->setFrom("me@example.net") <br /> ->setCc("address4@sendgrid.com") <br /> ->setBcc("address5@sendgrid.com") <br /> ->setUniqueArgs(array('customer' => 'mycustomer', 'location' => 'mylocation')) <br /> ->addCategory('category1') <br /> ->addCategory('category2') <br /> ->setTemplateId('templateID'); <br /> <br /> $attachments = array('/tmp/img1.jpg', '/tmp/img2.jpg'); <br /> add_filter('wp_mail_content_type', 'set_html_content_type'); <br /> $mail = wp_mail($to, $subject, $message, $headers, $attachments); <br /> remove_filter('wp_mail_content_type', 'set_html_content_type'); </div> <br /> <b>How to use Substitution and Sections</b> <br /> <div class="code"> $subject = 'Hey %name%, you work at %place%'; <br /> $message = 'testing WordPress plugin'; <br /> $to = array('address1@sendgrid.com'); <br /> <br /> $headers = new SendGrid\Email(); <br /> $headers <br /> ->addSmtpapiTo("john@somewhere.com") <br /> ->addSmtpapiTo("harry@somewhere.com") <br /> ->addSmtpapiTo("Bob@somewhere.com") <br /> ->addSubstitution("%name%", array("John", "Harry", "Bob")) <br /> ->addSubstitution("%place%", array("%office%", "%office%", "%home%")) <br /> ->addSection("%office%", "an office") <br /> ->addSection("%home%", "your house"); <br /> <br /> $mail = wp_mail($to, $subject, $message, $headers);` </div> <br /> More examples for using SendGrid SMTPAPI header: <a href="https://github.com/sendgrid/smtpapi-php/" target="_blank">https://github.com/sendgrid/smtpapi-php/</a> <br /> <br /> <b>Categories used for emails can be set:</b> <ul> <li>globally, for all emails sent, by setting the 'Categories' field in the 'Mail settings' section</li> <li>per email by adding the category in the headers array: <span class="code">$headers[] = 'categories: category1, category2';</span></li> </ul> If you would like to configure categories for statistics, you can configure it by setting the 'Categories' field in the 'Statistics settings' section <br /> <br /> <p><b>Define SendGrid settings as global variables (wp-config.php):</b></p> <p> <ol> <li>Set the API Key: <ul> <li>API Key: <span class="code">define('SENDGRID_API_KEY', 'sendgrid_api_key');</span></li> </ul> </li> <li>Set email related settings: <ul> <li>Send method ('api' or 'smtp'): <span class="code">define('SENDGRID_SEND_METHOD', 'api');</span></li> <li>From name: <span class="code">define('SENDGRID_FROM_NAME', 'Example Name');</span></li> <li>From email: <span class="code">define('SENDGRID_FROM_EMAIL', 'from_email@example.com');</span></li> <li>Reply to email: <span class="code">define('SENDGRID_REPLY_TO', 'reply_to@example.com');</span></li> <li>Categories: <span class="code">define('SENDGRID_CATEGORIES', 'category_1,category_2');</span></li> </ul> </li> </ol> </p> </p>
[-] sendgrid_settings_nlvx.php
[edit]
[-] sendgrid_contextual_help.php
[edit]
[+]
js
[-] sendgrid_settings_test_email.php
[edit]
[-] sendgrid_settings_test_contact.php
[edit]
[+]
..
[-] sendgrid_settings.php
[edit]
[-] sendgrid_stats.php
[edit]
[+]
css
[-] sendgrid_settings_nav.php
[edit]
[+]
partials
[-] sendgrid_settings_multisite.php
[edit]
[+]
images
[-] sendgrid_settings_general.php
[edit]