當前位置: 首頁>>代碼示例>>PHP>>正文


PHP email::url_方法代碼示例

本文整理匯總了PHP中email::url_方法的典型用法代碼示例。如果您正苦於以下問題:PHP email::url_方法的具體用法?PHP email::url_怎麽用?PHP email::url_使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在email的用法示例。


在下文中一共展示了email::url_方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: activacion_cuenta

function activacion_cuenta($correo, $empresa, $ruc, $id)
{
    $email = new email();
    $url = $email->url_();
    // mensaje html
    $contenido_html = '
				<!DOCTYPE html>
					 <html xmlns="http://www.w3.org/1999/xhtml">
					 <head>
					  <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
					  <meta name="viewport" content="initial-scale=1.0" />
					  <meta name="format-detection" content="telephone=no" />
					  <title></title>
					  <style type="text/css">
					 	body {
							width: 100%;
							margin: 0;
							padding: 0;
							-webkit-font-smoothing: antialiased;
						}
						@media only screen and (max-width: 600px) {
							table[class="table-row"] {
								float: none !important;
								width: 98% !important;
								padding-left: 20px !important;
								padding-right: 20px !important;
							}
							table[class="table-row-fixed"] {
								float: none !important;
								width: 98% !important;
							}
							table[class="table-col"], table[class="table-col-border"] {
								float: none !important;
								width: 100% !important;
								padding-left: 0 !important;
								padding-right: 0 !important;
								table-layout: fixed;
							}
							td[class="table-col-td"] {
								width: 100% !important;
							}
							table[class="table-col-border"] + table[class="table-col-border"] {
								padding-top: 12px;
								margin-top: 12px;
								border-top: 1px solid #E8E8E8;
							}
							table[class="table-col"] + table[class="table-col"] {
								margin-top: 15px;
							}
							td[class="table-row-td"] {
								padding-left: 0 !important;
								padding-right: 0 !important;
							}
							table[class="navbar-row"] , td[class="navbar-row-td"] {
								width: 100% !important;
							}
							img {
								max-width: 100% !important;
								display: inline !important;
							}
							img[class="pull-right"] {
								float: right;
								margin-left: 11px;
					            max-width: 125px !important;
								padding-bottom: 0 !important;
							}
							img[class="pull-left"] {
								float: left;
								margin-right: 11px;
								max-width: 125px !important;
								padding-bottom: 0 !important;
							}
							table[class="table-space"], table[class="header-row"] {
								float: none !important;
								width: 98% !important;
							}
							td[class="header-row-td"] {
								width: 100% !important;
							}
						}
						@media only screen and (max-width: 480px) {
							table[class="table-row"] {
								padding-left: 16px !important;
								padding-right: 16px !important;
							}
						}
						@media only screen and (max-width: 320px) {
							table[class="table-row"] {
								padding-left: 12px !important;
								padding-right: 12px !important;
							}
						}
						@media only screen and (max-width: 608px) {
							td[class="table-td-wrap"] {
								width: 100% !important;
							}
						}
					  </style>
					 </head>
					 <body style="font-family: Arial, sans-serif; font-size:13px; color: #444444; min-height: 200px;" bgcolor="#E4E6E9" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">
//.........這裏部分代碼省略.........
開發者ID:deividscriollo,項目名稱:dobe,代碼行數:101,代碼來源:classcorreos.php


注:本文中的email::url_方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。