.

Email Links in HTML Assignment Help

It is implemented through HTML FORMS and then employing PHP script or CGI script to send an email

Email tag in HTML


Email Links in HTML Assignment Help Through Online Tutoring and Guided Sessions at MyAssignmentHelp


< a> tag allows representing email address to send an email along with href attribute

Syntax

< a href = “mailto: email address”> Send an Email < /a>

Example

< a href = “mailto: xyz.gmail.com”> Send an Email < /a>

Output

Send an Email

When the above link is clicked, it opens an email client, in case of that email client not installed; it is not allowed to send an email

Make Default Settings

By specifying an email address with default subject and mail content , it is possible to send an email

Example

< a href = “mailto: xyz.gmail.com? subject=Ranking&body=Stars”>

Send an Email

< /a>

Output

Send an Email

When the above link is clicked, an email will be sent

.