Ako vytvoriť HTML e-mailový podpis pre iPhone alebo iPad

Ak ste závislí na e-mailoch, najmä pre podnikanie, z tohto tutoriálu sa krok za krokom naučíte, ako vytvoriť HTML e-mailový podpis pre iPhone alebo iPad.

HTML firemný e-mailový podpis by mal obsahovať: vaše meno, pozíciu v rámci organizácie, názov spoločnosti, logo spoločnosti, vaše a firemné kontaktné údaje (telefón, e-mail, webová adresa).

Vo väčšine e-mailových aplikácií, ako napr Outlook, HTML podpisy sa pridávajú vložením kódu HTML v poli podpisu. Pre iPhone alebo iPad je mierne odlišný, avšak v oboch prípadoch potrebujete HTML podpis.

Ako vytvoriť HTML e-mailový podpis pre iPhone alebo iPad

Ako som povedal vyššie, najprv musíte vytvoriť HTML podpis (ak ho už máte, môžete túto časť návodu preskočiť).

Vytvorte HTML podpis

V mojom príklade som urobil a HTML e-mailový podpis pre iPhone niečo jednoduchšie, čo zahŕňa: obrázok (alebo logo firmy), ikony sociálnej siete s odkazom, meno a priezvisko, funkciu, telefónne číslo, emailovú adresu a webovú adresu.

HTML e-mailový podpis pre iPhone
HTML podpis

Ak chcete začať od tohto model podpisu je HTML kód nasledovný:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Email Signature</title>
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Montserrat">
<style type="text/css">
	img { outline: none; text-decoration: none; border: none; }
	p { margin: 0px !important; }
	a { color: #000 !important; text-decoration:none !important; }

	@media only screen and (max-width: 480px) {
		.heading-one {
			font-size:16px !important;
			line-height:18px !important;
		}
		
		.heading-two {
			font-size:12px !important;
			line-height:14px !important;
		}
		
		.paragraph {
			font-size:10px !important;
			line-height:11px !important;
		}
	}

	href>a { color:#000; text-decoration: none !important; text-decoration: none; }
</style>
</head>

<body>
<!-- EDIT BELOW IF YOU AREN'T OUTLOOK USER -->
<!--[if !mso]><!-->
<table width="100%" border="0" cellspacing="0" cellpadding="0">
	<tbody>
		<tr>
			<td valign="top" style="display:inline-block; min-width:100px; max-width:100px; padding-right: 20px; padding-bottom: 10px;"><table width="80" border="0" cellspacing="0" cellpadding="0">
				<tbody>
					<tr>
						<td style="display: block; height: 100px; text-align: center;"><img src="img/model.jpg" width="100" height="100" alt=""/></td>
					</tr>
					<tr>
						<td style="background: #305dbf; padding-top: 10px; padding-bottom: 10px; text-align: center;"><table border="0" align="center" cellpadding="0" cellspacing="0">
							<tbody>
								<tr>
									<td style="padding-right: 15px;"><a href="http://www.facebook.com/" target="_blank"><img src="img/icon-facebook-0.png" width="12" height="12" alt=""/></a></td>
									<td style="padding-right: 15px;"><a href="http://www.twitter.com/" target="_blank"><img src="img/icon-twitter-0.png" width="12" height="12" alt=""/></a></td>
									<td><a href="http://www.linkedin.com/" target="_blank"><img src="img/icon-linkedin-0.png" width="12" height="12" alt=""/></a></td>
								</tr>
							</tbody>
						</table></td>
					</tr>
				</tbody>
			</table></td>
			<td valign="top" style="display:inline-block; min-width:300px; max-width:400px;"><table width="100%" border="0" cellspacing="0" cellpadding="0">
				<tbody>
					<tr>
						<td style="padding-bottom: 10px;"><span class="heading-one" style="font-family:'Montserrat', Arial, sans-serif; font-size:16px; line-height:18px; font-weight:600; color:#000; text-transform:uppercase;">John Doe</span><br><span class="heading-two" style="font-family:'Montserrat', Arial, sans-serif; font-size:14px; line-height:16px; font-weight:500; color:#000; text-transform:capitalize;">Creative Director</span></td>
					</tr>
					<tr>
						<td style="padding-bottom: 7px;"><table width="100%" border="0" cellspacing="0" cellpadding="0">
							<tbody>
								<tr>
									<td width="16" style="padding-right: 5px;"><img src="img/icon-phone-10.png" width="16" height="16" alt=""/></td>
									<td><span class="paragraph" style="font-family:'Montserrat', Arial, sans-serif; font-size:12px; line-height:14px; font-weight:400; color:#000;">858-272-3400</span></td>
								</tr>
							</tbody>
						</table></td>
					</tr>
					<tr>
						<td style="padding-bottom: 7px;"><table width="100%" border="0" cellspacing="0" cellpadding="0">
							<tbody>
								<tr>
									<td width="16" style="padding-right: 5px;"><img src="img/icon-email-10.png" width="16" height="16" alt=""/></td>
									<td><a href="mailto:youremail@domain.com" target="_blank" style="color:#000; text-decoration: none !important; text-decoration: none;"><span class="paragraph" style="font-family:'Montserrat', Arial, sans-serif; font-size:12px; line-height:14px; font-weight:400; color:#000;">hi@website.com</span></a></td>
								</tr>
							</tbody>
						</table></td>
					</tr>
					<tr>
						<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
							<tbody>
								<tr>
									<td width="16" style="padding-right: 5px;"><img src="img/icon-website-10.png" width="16" height="16" alt=""/></td>
									<td><a href="http://www.yourwebsite.com" target="_blank" style="color:#000; text-decoration: none !important; text-decoration: none;"><span class="paragraph" style="font-family:'Montserrat', Arial, sans-serif; font-size:12px; line-height:14px; font-weight:400; color:#000;">www.website.com</span></a></td>
								</tr>
							</tbody>
						</table></td>
					</tr>
				</tbody>
			</table></td>
		</tr>
	</tbody>
</table>
<!--<![endif]-->

<!-- EDIT BELOW IF YOU ARE OUTLOOK USER -->
<!--[if mso]>
<table border="0" cellspacing="0" cellpadding="0">
	<tbody>
		<tr>
			<td width="100" valign="top" style="padding-right: 20px; padding-bottom: 10px;"><table width="80" border="0" cellspacing="0" cellpadding="0">
				<tbody>
					<tr>
						<td style="display: block; height: 100px; text-align: center;"><img src="img/model.jpg" width="100" height="100" alt=""/></td>
					</tr>
					<tr>
						<td style="background: #305dbf; padding-top: 10px; padding-bottom: 10px; text-align: center;"><table border="0" align="center" cellpadding="0" cellspacing="0">
							<tbody>
								<tr>
									<td style="padding-right: 15px;"><a href="http://www.facebook.com/" target="_blank"><img src="img/icon-facebook-0.png" width="12" height="12" alt=""/></a></td>
									<td style="padding-right: 15px;"><a href="http://www.twitter.com/" target="_blank"><img src="img/icon-twitter-0.png" width="12" height="12" alt=""/></a></td>
									<td><a href="http://www.linkedin.com/" target="_blank"><img src="img/icon-linkedin-0.png" width="12" height="12" alt=""/></a></td>
								</tr>
							</tbody>
						</table></td>
					</tr>
				</tbody>
			</table></td>
			<td width="400" valign="top"><table width="100%" border="0" cellspacing="0" cellpadding="0">
				<tbody>
					<tr>
						<td style="padding-bottom: 10px;"><span class="heading-one" style="font-family:'Montserrat', Arial, sans-serif; font-size:16px; line-height:18px; font-weight:600; color:#000; text-transform:uppercase;"><font face="'Montserrat', Arial, sans-serif !important;">John Doe</font></span><br><span class="heading-two" style="font-family:'Montserrat', Arial, sans-serif; font-size:14px; line-height:16px; font-weight:500; color:#000; text-transform:capitalize;"><font face="'Montserrat', Arial, sans-serif !important;">Creative Director</font></span></td>
					</tr>
					<tr>
						<td style="padding-bottom: 7px;"><table width="100%" border="0" cellspacing="0" cellpadding="0">
							<tbody>
								<tr>
									<td width="16" style="padding-right: 5px;"><img src="img/icon-phone-10.png" width="16" height="16" alt=""/></td>
									<td><span class="paragraph" style="font-family:'Montserrat', Arial, sans-serif; font-size:12px; line-height:14px; font-weight:400; color:#000;"><font face="'Montserrat', Arial, sans-serif !important;">858-272-3400</font></span></td>
								</tr>
							</tbody>
						</table></td>
					</tr>
					<tr>
						<td style="padding-bottom: 7px;"><table width="100%" border="0" cellspacing="0" cellpadding="0">
							<tbody>
								<tr>
									<td width="16" style="padding-right: 5px;"><img src="img/icon-email-10.png" width="16" height="16" alt=""/></td>
									<td><a href="mailto:youremail@domain.com" target="_blank" style="color:#000; text-decoration: none !important; text-decoration: none;"><span class="paragraph" style="font-family:'Montserrat', Arial, sans-serif; font-size:12px; line-height:14px; font-weight:400; color:#000;"><font face="'Montserrat', Arial, sans-serif !important;">hi@website.com</font></span></a></td>
								</tr>
							</tbody>
						</table></td>
					</tr>
					<tr>
						<td><table width="100%" border="0" cellspacing="0" cellpadding="0">
							<tbody>
								<tr>
									<td width="16" style="padding-right: 5px;"><img src="img/icon-website-10.png" width="16" height="16" alt=""/></td>
									<td><a href="http://www.yourwebsite.com" target="_blank" style="color:#000; text-decoration: none !important; text-decoration: none;"><span class="paragraph" style="font-family:'Montserrat', Arial, sans-serif; font-size:12px; line-height:14px; font-weight:400; color:#000;"><font face="'Montserrat', Arial, sans-serif !important;">www.website.com</font></span></a></td>
								</tr>
							</tbody>
						</table></td>
					</tr>
				</tbody>
			</table></td>
		</tr>
	</tbody>
</table>
<![endif]-->
</body>
</html>

Najjednoduchšie je vytvoriť priečinok pre podpis. Tento kód skopírujete do textového alebo HTML editora a potom ho upravíte svojimi údajmi. Nakoniec ho uložíte s príponou .html.

Vedľa súboru HTML vytvoríte priečinok img do ktorého zahrniete grafické prvky. Obrázok a ikony. Tieto prvky identifikujete vo svojom HTML kóde. Príklad: <img src="img/icon-email-10.png".../>.

Po prispôsobení podpisu otvorte súbor HTML vo svojom prehliadači. Výsledok by mal byť podobný obrázku na začiatku tutoriálu.

Ako pridať HTML podpis pre iPhone alebo iPad

Aby bol podpis otvorený a čitateľný pre príjemcov, musí byť umiestnený na webovom serveri alebo službe cloud ktorý vám umožňuje nahrávať HTML súbory a grafiku.

Dal som svoj podpis Webová adresa.

E-mailový podpis na webe
E-mailový podpis na webe

Po vytvorení podpisu HTML a jeho dostupnosti online je ďalším krokom pridanie podpisu HTML do vašich e-mailových účtov na vašich zariadeniach iPhone alebo iPad.

Návod je pre e-mailové účty pridané do aplikácie Mail prítomný na všetkých zariadeniach iPhone, iPad, Mac.

1. Otvorte "Settings"potom prejdite na"Mail".

2. V možnostiach "Mail"OTVORENÉ"Signature".

Ako vytvoriť HTML e-mailový podpis pre iPhone alebo iPad
Ako vytvoriť HTML e-mailový podpis pre iPhone alebo iPad

2. Otvorte webový odkaz, na ktorý máte podpis, a skopírujte celý obsah. Môžete to urobiť z Safari zariadení iPhone alebo iPad. S funkciou Handoff (Universal Clipboard), môžete skopírovať HTML podpis zo svojho počítača Mac alebo MacKniha.

Skopírujte HTML podpis
Skopírujte HTML podpis

3. Vráťte sa na „Signature“ a prilepiť (paste) skopírovaný obsah.

iPhone HTML podpis
iPhone HTML podpis

Po tomto kroku môžete povedať, že ste sa naučili vytvárať a pridávať HTML e-mailový podpis pre iPhone alebo iPad.

HTML podpis v iPhone e-mail
HTML podpis

Súvisiace: Ako vytvoriť HTML podpis s obrázkom Outlook

Neznepokojujte sa, ak si všimnete, že v bode 3 nie je text čitateľný. Farba pozadia sa skopíruje zo zdroja podpisu HTML. Ak má teda príjemca e-mailové rozhranie nastavené na „tmavú“ tému, vaša správa mu príde s bielym pozadím.

Zanietený technológiou, s radosťou píšem na StealthSettings.com od roku 2006. Mám bohaté skúsenosti s operačnými systémami: macOS, Windows a Linux, ako aj s programovacími jazykmi a platformami pre blogovanie (WordPress) a pre online obchody (WooCommerce, Magento, PrestaShop).

Ako » iHowTo » iHowTo - iOS » Ako vytvoriť HTML e-mailový podpis pre iPhone alebo iPad
Pridať komentár