{"id":719,"date":"2015-02-20T20:13:29","date_gmt":"2015-02-20T20:13:29","guid":{"rendered":"http:\/\/luisrodriguez.pe\/blog\/?p=719"},"modified":"2015-02-20T20:18:23","modified_gmt":"2015-02-20T20:18:23","slug":"usar-la-libreria-phpmailer-en-codeigniter","status":"publish","type":"post","link":"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/","title":{"rendered":"Usar La libreria PHPMAILER en CODEIGNITER"},"content":{"rendered":"<p>Al poco tiempo que comence a usar <strong>codeigniter<\/strong> se me habia presentado la necesidad de usar la libreria <strong>phpmailer<\/strong> que ya es parte de nuestra tipica librerias preferidas a la hora de desarrollar un proyecto por lo bueno que llega a ser.<\/p>\n<p>antes de comenzar debes ya tener la <a href=\"https:\/\/github.com\/Synchro\/PHPMailer\" target=\"_blank\">libreria phpmailer<\/a> descargada y tener listo una instalado el codeigniter y nos vamos a la carpeta <strong>libraries<\/strong> que es el lugar donde debemos colocar la carpeta que nos da la libreria phpmailer y debe quedar asi.<\/p>\n<p><a href=\"http:\/\/luisrodriguez.pe\/blog\/wp-content\/uploads\/2015\/02\/instalar_phpmailer_codeigniter.png\"><img decoding=\"async\" class=\"alignnone size-full wp-image-720\" src=\"http:\/\/luisrodriguez.pe\/blog\/wp-content\/uploads\/2015\/02\/instalar_phpmailer_codeigniter.png\" alt=\"instalar_phpmailer_codeigniter\" width=\"216\" height=\"210\" \/><\/a><\/p>\n<p>ahora que lo tenemos instalado codeigniter nunca se enterara que existe si no le indicamos y para eso debemos ir a autoload.php que se encuentra en <strong>config<\/strong><\/p>\n<p><a href=\"http:\/\/luisrodriguez.pe\/blog\/wp-content\/uploads\/2015\/02\/ubicar_autoload_codeigniter.png\"><img decoding=\"async\" src=\"http:\/\/luisrodriguez.pe\/blog\/wp-content\/uploads\/2015\/02\/ubicar_autoload_codeigniter.png\" alt=\"ubicar_autoload_codeigniter\" width=\"246\" height=\"196\" class=\"alignnone size-full wp-image-721\" \/><\/a><\/p>\n<p>puedes tener cargada algunas librerias por defecto<br \/>\n<code><\/p>\n\n<div class=\"wp_syntax\"><table><tr><td class=\"code\"><pre class=\"php\" style=\"font-family:monospace;\"><span style=\"color: #000088;\">$autoload<\/span><span style=\"color: #009900;\">&#91;<\/span><span style=\"color: #0000ff;\">'libraries'<\/span><span style=\"color: #009900;\">&#93;<\/span><span style=\"color: #339933;\">=<\/span><span style=\"color: #990000;\">array<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #0000ff;\">'template'<\/span><span style=\"color: #339933;\">,<\/span><span style=\"color: #0000ff;\">'session'<\/span><span style=\"color: #339933;\">,<\/span><span style=\"color: #0000ff;\">'database'<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span><\/pre><\/td><\/tr><\/table><\/div>\n\n<p><\/code><\/p>\n<p>pero falta agregar la de phpmailer.<br \/>\n<code><\/p>\n\n<div class=\"wp_syntax\"><table><tr><td class=\"code\"><pre class=\"php\" style=\"font-family:monospace;\"><span style=\"color: #000088;\">$autoload<\/span><span style=\"color: #009900;\">&#91;<\/span><span style=\"color: #0000ff;\">'libraries'<\/span><span style=\"color: #009900;\">&#93;<\/span><span style=\"color: #339933;\">=<\/span><span style=\"color: #990000;\">array<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #0000ff;\">'template'<\/span><span style=\"color: #339933;\">,<\/span><span style=\"color: #0000ff;\">'session'<\/span><span style=\"color: #339933;\">,<\/span><span style=\"color: #0000ff;\">'database'<\/span><span style=\"color: #339933;\">,<\/span><span style=\"color: #0000ff;\">'phpmailer'<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span><\/pre><\/td><\/tr><\/table><\/div>\n\n<p><\/code><\/p>\n<p>hasta ahora vamos bien pero falta lo que a muchos confunde que es el amarre que se debe hacer en la carpeta libraries y creamos un archivo My_phpmailer.php con el siguiente codigo que en realidad creamos una libreria para codeigniter que dentro de la libreria hacemos un include de el core del phpmailer.<\/p>\n<p><code><\/p>\n\n<div class=\"wp_syntax\"><table><tr><td class=\"code\"><pre class=\"php\" style=\"font-family:monospace;\"><span style=\"color: #b1b100;\">if<\/span> <span style=\"color: #009900;\">&#40;<\/span> <span style=\"color: #339933;\">!<\/span> <span style=\"color: #990000;\">defined<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #0000ff;\">'BASEPATH'<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #009900;\">&#41;<\/span> <span style=\"color: #990000;\">exit<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #0000ff;\">'No direct script access allowed'<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span>\n&nbsp;\n<span style=\"color: #000000; font-weight: bold;\">class<\/span> My_PHPMailer <span style=\"color: #009900;\">&#123;<\/span>\n    <span style=\"color: #000000; font-weight: bold;\">public<\/span> <span style=\"color: #000000; font-weight: bold;\">function<\/span> My_PHPMailer<span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #009900;\">&#41;<\/span> <span style=\"color: #009900;\">&#123;<\/span>\n        <span style=\"color: #b1b100;\">require_once<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #0000ff;\">'PHPMailer\/class.phpmailer.php'<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span>\n    <span style=\"color: #009900;\">&#125;<\/span>\n<span style=\"color: #009900;\">&#125;<\/span><\/pre><\/td><\/tr><\/table><\/div>\n\n<p><\/code><\/p>\n<p>si colocaste todo en su sitio no es necesario que modifiques la ruta que damos en el require_once y con esto ya podemos usar nuestra libreria en cualquier control por ejemplo:<\/p>\n<p><code><\/p>\n\n<div class=\"wp_syntax\"><table><tr><td class=\"code\"><pre class=\"php\" style=\"font-family:monospace;\"> <span style=\"color: #000000; font-weight: bold;\">public<\/span> <span style=\"color: #000000; font-weight: bold;\">function<\/span> envio<span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #009900;\">&#41;<\/span>\n<span style=\"color: #009900;\">&#123;<\/span>\n        <span style=\"color: #000088;\">$mail<\/span> <span style=\"color: #339933;\">=<\/span> <span style=\"color: #000000; font-weight: bold;\">new<\/span> PHPMailer<span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span>\n        <span style=\"color: #000088;\">$mail<\/span><span style=\"color: #339933;\">-&gt;<\/span><span style=\"color: #004000;\">SetLanguage<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #0000ff;\">'es'<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span>\n        <span style=\"color: #000088;\">$mail<\/span><span style=\"color: #339933;\">-&gt;<\/span><span style=\"color: #004000;\">FromName<\/span> <span style=\"color: #339933;\">=<\/span> <span style=\"color: #0000ff;\">&quot;luisrodriguez.pe&quot;<\/span><span style=\"color: #339933;\">;<\/span>\n        <span style=\"color: #000088;\">$mail<\/span><span style=\"color: #339933;\">-&gt;<\/span><span style=\"color: #004000;\">From<\/span> <span style=\"color: #339933;\">=<\/span> <span style=\"color: #0000ff;\">&quot;no-reply@luisrodriguez.pe&quot;<\/span><span style=\"color: #339933;\">;<\/span>\n        <span style=\"color: #000088;\">$mail<\/span><span style=\"color: #339933;\">-&gt;<\/span><span style=\"color: #004000;\">Subject<\/span> <span style=\"color: #339933;\">=<\/span> <span style=\"color: #0000ff;\">&quot;asunto del mensaje&quot;<\/span><span style=\"color: #339933;\">;<\/span>\n        <span style=\"color: #000088;\">$mail<\/span><span style=\"color: #339933;\">-&gt;<\/span><span style=\"color: #004000;\">AddAddress<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #0000ff;\">&quot;luizmirodriguez@gmail.com&quot;<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span>\n        <span style=\"color: #000088;\">$mail<\/span><span style=\"color: #339933;\">-&gt;<\/span><span style=\"color: #004000;\">Body<\/span> <span style=\"color: #339933;\">=<\/span> <span style=\"color: #0000ff;\">&quot;cuerpo de mensaje&quot;<\/span><span style=\"color: #339933;\">;<\/span>\n        <span style=\"color: #000088;\">$mail<\/span><span style=\"color: #339933;\">-&gt;<\/span><span style=\"color: #004000;\">IsHTML<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #009900; font-weight: bold;\">true<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span>\n        <span style=\"color: #000088;\">$mail<\/span><span style=\"color: #339933;\">-&gt;<\/span><span style=\"color: #004000;\">Send<\/span><span style=\"color: #009900;\">&#40;<\/span><span style=\"color: #009900;\">&#41;<\/span><span style=\"color: #339933;\">;<\/span>\n<span style=\"color: #009900;\">&#125;<\/span><\/pre><\/td><\/tr><\/table><\/div>\n\n<p><\/code><\/p>\n<p>espero que les ayude y cualquier duda en los comentarios de abajo.<\/p>\n","protected":false},"excerpt":{"rendered":"Al poco tiempo que comence a usar codeigniter se me habia presentado la necesidad de usar la libreria phpmailer que ya es parte de nuestra tipica librerias preferidas a la hora de desarrollar un proyecto por lo bueno que llega a ser. antes de comenzar debes ya tener la libreria phpmailer descargada y tener listo[&#8230;]","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[38,6],"tags":[74,75,25,73],"class_list":["post-719","post","type-post","status-publish","format-standard","hentry","category-codeigniter","category-php","tag-codeigniter","tag-mail","tag-php-2","tag-phpmailer"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Usar La libreria PHPMAILER en CODEIGNITER - Blog Luis Rodriguez<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/\" \/>\n<meta property=\"og:locale\" content=\"es_ES\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Usar La libreria PHPMAILER en CODEIGNITER - Blog Luis Rodriguez\" \/>\n<meta property=\"og:description\" content=\"Al poco tiempo que comence a usar codeigniter se me habia presentado la necesidad de usar la libreria phpmailer que ya es parte de nuestra tipica librerias preferidas a la hora de desarrollar un proyecto por lo bueno que llega a ser. antes de comenzar debes ya tener la libreria phpmailer descargada y tener listo[...]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/\" \/>\n<meta property=\"og:site_name\" content=\"Blog Luis Rodriguez\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/luisrodriguez.pe\" \/>\n<meta property=\"article:published_time\" content=\"2015-02-20T20:13:29+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2015-02-20T20:18:23+00:00\" \/>\n<meta property=\"og:image\" content=\"http:\/\/luisrodriguez.pe\/blog\/wp-content\/uploads\/2015\/02\/instalar_phpmailer_codeigniter.png\" \/>\n<meta name=\"author\" content=\"Luis Rodriguez\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@luizmirodriguez\" \/>\n<meta name=\"twitter:site\" content=\"@luizmirodriguez\" \/>\n<meta name=\"twitter:label1\" content=\"Escrito por\" \/>\n\t<meta name=\"twitter:data1\" content=\"Luis Rodriguez\" \/>\n\t<meta name=\"twitter:label2\" content=\"Tiempo de lectura\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minuto\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/\"},\"author\":{\"name\":\"Luis Rodriguez\",\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/#\/schema\/person\/ec55de81e01fdaf3533eb78f6a49090c\"},\"headline\":\"Usar La libreria PHPMAILER en CODEIGNITER\",\"datePublished\":\"2015-02-20T20:13:29+00:00\",\"dateModified\":\"2015-02-20T20:18:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/\"},\"wordCount\":231,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/luisrodriguez.pe\/blog\/wp-content\/uploads\/2015\/02\/instalar_phpmailer_codeigniter.png\",\"keywords\":[\"codeigniter\",\"mail\",\"php\",\"phpmailer\"],\"articleSection\":[\"Codeigniter\",\"PHP\"],\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/\",\"url\":\"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/\",\"name\":\"Usar La libreria PHPMAILER en CODEIGNITER - Blog Luis Rodriguez\",\"isPartOf\":{\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/#primaryimage\"},\"thumbnailUrl\":\"http:\/\/luisrodriguez.pe\/blog\/wp-content\/uploads\/2015\/02\/instalar_phpmailer_codeigniter.png\",\"datePublished\":\"2015-02-20T20:13:29+00:00\",\"dateModified\":\"2015-02-20T20:18:23+00:00\",\"author\":{\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/#\/schema\/person\/ec55de81e01fdaf3533eb78f6a49090c\"},\"breadcrumb\":{\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/#breadcrumb\"},\"inLanguage\":\"es\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/#primaryimage\",\"url\":\"https:\/\/luisrodriguez.pe\/blog\/wp-content\/uploads\/2015\/02\/instalar_phpmailer_codeigniter.png\",\"contentUrl\":\"https:\/\/luisrodriguez.pe\/blog\/wp-content\/uploads\/2015\/02\/instalar_phpmailer_codeigniter.png\",\"width\":216,\"height\":210},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Portada\",\"item\":\"https:\/\/luisrodriguez.pe\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Usar La libreria PHPMAILER en CODEIGNITER\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/#website\",\"url\":\"https:\/\/luisrodriguez.pe\/blog\/\",\"name\":\"Blog Luis Rodriguez\",\"description\":\"Analytics Developer\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/luisrodriguez.pe\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"es\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/luisrodriguez.pe\/blog\/#\/schema\/person\/ec55de81e01fdaf3533eb78f6a49090c\",\"name\":\"Luis Rodriguez\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"es\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/3b0f9734b267ecb38e1860734b4caebda4efa8be9a2bb536862b6a2ba23afa82?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/3b0f9734b267ecb38e1860734b4caebda4efa8be9a2bb536862b6a2ba23afa82?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/3b0f9734b267ecb38e1860734b4caebda4efa8be9a2bb536862b6a2ba23afa82?s=96&d=mm&r=g\",\"caption\":\"Luis Rodriguez\"},\"description\":\"Hola, Soy Luis Rodriguez, radico en Lima \u2013 Per\u00fa, formado en una carrera inform\u00e1tica, desempe\u00f1ando desde el 2007 como programador web y viendo proyectos desde Front End y Back End a lo que me perfile como Full Stack. Esta Experiencia junto a mi inter\u00e9s en la Anal\u00edtica Web me ayud\u00f3 mucho entender el funcionamiento interno de las herramientas de anal\u00edtica, con las que vengo trabajo activamente desde 2017. Linkedin\",\"sameAs\":[\"http:\/\/luisrodriguez.pe\"],\"url\":\"https:\/\/luisrodriguez.pe\/blog\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Usar La libreria PHPMAILER en CODEIGNITER - Blog Luis Rodriguez","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/","og_locale":"es_ES","og_type":"article","og_title":"Usar La libreria PHPMAILER en CODEIGNITER - Blog Luis Rodriguez","og_description":"Al poco tiempo que comence a usar codeigniter se me habia presentado la necesidad de usar la libreria phpmailer que ya es parte de nuestra tipica librerias preferidas a la hora de desarrollar un proyecto por lo bueno que llega a ser. antes de comenzar debes ya tener la libreria phpmailer descargada y tener listo[...]","og_url":"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/","og_site_name":"Blog Luis Rodriguez","article_publisher":"https:\/\/www.facebook.com\/luisrodriguez.pe","article_published_time":"2015-02-20T20:13:29+00:00","article_modified_time":"2015-02-20T20:18:23+00:00","og_image":[{"url":"http:\/\/luisrodriguez.pe\/blog\/wp-content\/uploads\/2015\/02\/instalar_phpmailer_codeigniter.png","type":"","width":"","height":""}],"author":"Luis Rodriguez","twitter_card":"summary_large_image","twitter_creator":"@luizmirodriguez","twitter_site":"@luizmirodriguez","twitter_misc":{"Escrito por":"Luis Rodriguez","Tiempo de lectura":"1 minuto"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/#article","isPartOf":{"@id":"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/"},"author":{"name":"Luis Rodriguez","@id":"https:\/\/luisrodriguez.pe\/blog\/#\/schema\/person\/ec55de81e01fdaf3533eb78f6a49090c"},"headline":"Usar La libreria PHPMAILER en CODEIGNITER","datePublished":"2015-02-20T20:13:29+00:00","dateModified":"2015-02-20T20:18:23+00:00","mainEntityOfPage":{"@id":"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/"},"wordCount":231,"commentCount":0,"image":{"@id":"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/#primaryimage"},"thumbnailUrl":"http:\/\/luisrodriguez.pe\/blog\/wp-content\/uploads\/2015\/02\/instalar_phpmailer_codeigniter.png","keywords":["codeigniter","mail","php","phpmailer"],"articleSection":["Codeigniter","PHP"],"inLanguage":"es","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/","url":"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/","name":"Usar La libreria PHPMAILER en CODEIGNITER - Blog Luis Rodriguez","isPartOf":{"@id":"https:\/\/luisrodriguez.pe\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/#primaryimage"},"image":{"@id":"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/#primaryimage"},"thumbnailUrl":"http:\/\/luisrodriguez.pe\/blog\/wp-content\/uploads\/2015\/02\/instalar_phpmailer_codeigniter.png","datePublished":"2015-02-20T20:13:29+00:00","dateModified":"2015-02-20T20:18:23+00:00","author":{"@id":"https:\/\/luisrodriguez.pe\/blog\/#\/schema\/person\/ec55de81e01fdaf3533eb78f6a49090c"},"breadcrumb":{"@id":"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/#breadcrumb"},"inLanguage":"es","potentialAction":[{"@type":"ReadAction","target":["https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/"]}]},{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/#primaryimage","url":"https:\/\/luisrodriguez.pe\/blog\/wp-content\/uploads\/2015\/02\/instalar_phpmailer_codeigniter.png","contentUrl":"https:\/\/luisrodriguez.pe\/blog\/wp-content\/uploads\/2015\/02\/instalar_phpmailer_codeigniter.png","width":216,"height":210},{"@type":"BreadcrumbList","@id":"https:\/\/luisrodriguez.pe\/blog\/usar-la-libreria-phpmailer-en-codeigniter\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Portada","item":"https:\/\/luisrodriguez.pe\/blog\/"},{"@type":"ListItem","position":2,"name":"Usar La libreria PHPMAILER en CODEIGNITER"}]},{"@type":"WebSite","@id":"https:\/\/luisrodriguez.pe\/blog\/#website","url":"https:\/\/luisrodriguez.pe\/blog\/","name":"Blog Luis Rodriguez","description":"Analytics Developer","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/luisrodriguez.pe\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"es"},{"@type":"Person","@id":"https:\/\/luisrodriguez.pe\/blog\/#\/schema\/person\/ec55de81e01fdaf3533eb78f6a49090c","name":"Luis Rodriguez","image":{"@type":"ImageObject","inLanguage":"es","@id":"https:\/\/secure.gravatar.com\/avatar\/3b0f9734b267ecb38e1860734b4caebda4efa8be9a2bb536862b6a2ba23afa82?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/3b0f9734b267ecb38e1860734b4caebda4efa8be9a2bb536862b6a2ba23afa82?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3b0f9734b267ecb38e1860734b4caebda4efa8be9a2bb536862b6a2ba23afa82?s=96&d=mm&r=g","caption":"Luis Rodriguez"},"description":"Hola, Soy Luis Rodriguez, radico en Lima \u2013 Per\u00fa, formado en una carrera inform\u00e1tica, desempe\u00f1ando desde el 2007 como programador web y viendo proyectos desde Front End y Back End a lo que me perfile como Full Stack. Esta Experiencia junto a mi inter\u00e9s en la Anal\u00edtica Web me ayud\u00f3 mucho entender el funcionamiento interno de las herramientas de anal\u00edtica, con las que vengo trabajo activamente desde 2017. Linkedin","sameAs":["http:\/\/luisrodriguez.pe"],"url":"https:\/\/luisrodriguez.pe\/blog\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/posts\/719","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/comments?post=719"}],"version-history":[{"count":3,"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/posts\/719\/revisions"}],"predecessor-version":[{"id":724,"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/posts\/719\/revisions\/724"}],"wp:attachment":[{"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/media?parent=719"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/categories?post=719"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/luisrodriguez.pe\/blog\/wp-json\/wp\/v2\/tags?post=719"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}