🔴 January 2024 Alert: Forum support inactive!
New forum registration are currently closed.
Use GitHub discussions
.

    UVdesk

    • Login
    • Search
    • Recent
    1. Home
    2. larryhems
    L
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 1
    • Best 0
    • Controversial 0
    • Groups 0

    larryhems

    @larryhems

    0
    Reputation
    1
    Profile views
    1
    Posts
    0
    Followers
    0
    Following
    Joined Last Online

    larryhems Unfollow Follow

    Latest posts made by larryhems

    • RE: RFC 2822, 3.6.2. compliance error when sending a ticket

      The error is saying that the email address you are providing does not comply with the RFC standards. Make sure your email address variable is not blank.

      The fully RFC 822 compliant regex is inefficient and obscure for validate email address because of its length. Fortunately, RFC 822 was superseded twice and the current specification for email addresses is RFC 5322. RFC 5322 leads to a regex that can be understood if studied for a few minutes and is efficient enough for actual use.

      If you use HTML5, use this code:

      <input type="email" name="email" required placeholder="Enter a valid email address">
      
      posted in Technical Help
      L
      larryhems