Contact.vb · Md Ziaoul Hoque
' Contact.vb : how to get in touch
'
' NOTE: not available for any project or any work.
' I am not available for any project or any work. This site is a personal profile only, and nothing on it is an offer of services. Please do not send project enquiries, freelance briefs or job offers.

Public Class ContactService
    Private Const EMAIL    As String = "[email protected]"
    Private Const PHONE    As String = "+44 759 058 0200"
    Private Const LINKEDIN As String = "https://linkedin.com/in/ziaoul"
    Private Const GITHUB   As String = "https://github.com/ziaoul"
    Private Const TIMEZONE As String = "Europe/London (GMT/BST)"

    ''' <summary>
    ''' Personal contact only. Project enquiries are not accepted.
    ''' </summary>
    Public Function SendMessage(name As String,
                                email As String,
                                message As String) As Boolean
        If String.IsNullOrWhiteSpace(name) _
        OrElse String.IsNullOrWhiteSpace(email) _
        OrElse String.IsNullOrWhiteSpace(message) Then
            Return False
        End If

        Mailer.Deliver(EMAIL, name, email, message)
        Return True
    End Function
End Class
ContactService

Contact

Direct

Based in London, United Kingdom. Time zone Europe/London.

Send a message

This opens your own email client. Nothing is sent from this page.

Md Ziaoul Hoque : interactive shell
Type "help" for commands, or "neofetch" for the summary.
~/portfolio ❯