|
|
![]() |
| Thread Tools | Search this Thread |
#1
| |||
| |||
Getting strange PHPGmailer smtp error
How do I managed to get email activation working using php gmailer I have tried out many options for this to get enable, when I tried to prints out the url as text and not a link it doesn't happen so. I have read that removing the <a> tag will solve the problem and hence I have since removed the <a> around the url to make it easier I am here asking for suggestions. I am trying to figure out how to put phpgmailer into a html form. |
#2
| |||
| |||
Re: Getting strange PHPGmailer smtp error
Form elements are elements that allow the user to enter information (like text fields, textarea fields, drop-down menus, radio buttons, checkboxes, etc.) in a form. The php script had to do was to connect to the smtp server and send the email respecting the protocol. The server just had to support secure sockets connections. |
#3
| |||
| |||
Re: Getting strange PHPGmailer smtp error
PHP Mailer send mails in plain text , by default, you need to tell it that you're going to send an HTML email by using $mail->IsHTML(true), then you can use anchor tags. To create the HTML form, following is the HTML code. Code: <form> First name: <input type="text" name="firstname" /> <br /> Last name: <input type="text" name="lastname" /> </form> |
#4
| |||
| |||
Re: Getting strange PHPGmailer smtp error
To do this, you can’t expect that the server where your php scripts are running has the capacity to send emails. So to find a solution, I first search for an email provider. This will work for any GMail or Google Hosted email account. Just make sure to include the @domain.com part for the username, even if it’s for standard GMail. |
![]() |
|
Tags: html form, phpgmailer, smtp error, web url |
Thread Tools | Search this Thread |
|
![]() | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Getting error in SMTP: SMTP banner has no response. | Iason | Networking & Security | 6 | 20-06-2011 10:20 PM |
SMTP Error - 550 | superdave1984 | Windows Software | 3 | 30-10-2009 11:12 AM |
SMTP Mail Server Error 552 | Asaph | Technology & Internet | 3 | 02-06-2009 06:19 PM |
#5.5.0 smtp;553 Error | Theoran | Technology & Internet | 1 | 30-09-2008 01:52 PM |
SMTP communication problem smtp;550 - emails bouncing back | Antonio00 | Small Business Server | 1 | 03-04-2008 01:05 AM |