InterviewSolution
Saved Bookmarks
| 1. |
Which alternate will you use in case your machine is not running an email server? |
|
Answer» We can go with SMTP Server which is available at a REMOTE location along with requiring INFORMATION as Id-password and URL. Once you GET all these details to share your information to send() method Example$msg->send('smtp', "smtp.myisp.net", AuthUser=>"id", AuthPass=>"password" ); |
|