Print Page | Close Window

Mail Expert needed to help me..

Printed From: Web Wiz Forums
Category: Web Wiz Web App Support Forums
Forum Name: Web Wiz Forums
Forum Description: Support forum for Web Wiz Forums application.
URL: https://forums.webwiz.net/forum_posts.asp?TID=4181
Printed Date: 02 April 2026 at 2:39pm
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: Mail Expert needed to help me..
Posted By: BrownGhost
Subject: Mail Expert needed to help me..
Date Posted: 10 July 2003 at 8:06am

cant get CDOSYS to work.
Cant jet Jmail to work.

Jmail. not working reason my smtp requers username and password. and WWF dont support that.. = Sucks

CDOSYS.. dossent send any mail no matter how i config it :((
HELPPPPPPPPPPP

Thx BG




Replies:
Posted By: WebWiz-Bruce
Date Posted: 10 July 2003 at 8:29am
You will need to edit the functions_send_mail.asp file to add unual settings, your web host should be able to help you.

-------------
https://www.webwiz.net/web-wiz-forums/forum-hosting.htm" rel="nofollow - Web Wiz Forums Hosting
https://www.webwiz.net/web-hosting/windows-web-hosting.htm" rel="nofollow - ASP.NET Web Hosting


Posted By: BrownGhost
Date Posted: 10 July 2003 at 12:34pm

so why cant i get this to work??
CDOSYS.. This dos not use a smtp i provide... Right??

BG



Posted By: BrownGhost
Date Posted: 14 July 2003 at 12:53pm

to all that have smtp problems.. and have there own serevr..

just install this programe.. this will make a working smtp for you..

so easy :)

Now all my mail things are working on my hole page..
and it dos not inteafear whit isp mail thing or what ever...

So realy you should just install this if you have simmalar problems, as i had.. http://www.postcast.com - http://www.postcast.com

        --= = Brown Ghost = =--
--= = International Man of Mystery = =--



Posted By: kbannon
Date Posted: 14 July 2003 at 1:06pm
does the email address being used for the forum exist on the webserver? sometimes if not then it doesn't work

-------------
I don't suffer from insanity, I enjoy every minute of it.


Posted By: stef_nz
Date Posted: 15 July 2003 at 1:07am
you may also find a solution in using your web server's ip address or your domain name for your smtp server instead of your actual smtp server.

your smtp server requires authorisation to stop spammers relaying through it but if you have an application and a smtp server on www.yourdomain.com, use www.yourdomain.com (or the ip address) for example, instead of smtp.yourdomain.com. the www server should recognise the traffic as a mail message and pass it on to the smtp server automatically.

also, as per the post by borg, using aspemail component will allow you to add a username and password to the functions_send_mail.asp (i think?).

your choice.....



Posted By: BrownGhost
Date Posted: 15 July 2003 at 3:01am

thx all.. but the selution to all problems is postcast mail server..

works like a dream...

Yes the mail exciste for real..
No asp mail there is not option for user and password :(

        --= = Brown Ghost = =--
--= = International Man of Mystery = =--



Posted By: stef_nz
Date Posted: 15 July 2003 at 3:14am
sorry, i didn't mean to make things more confusing....

as long as you got it working thats all that counts!

if you are using the "ASPEmail" component - it uses persits.mailsender to create a mail component that you can attach a username and password to if you want....

Quote
Set objMail = Server.CreateObject("Persits.MailSender")
objMail.Username = "User123"
objMail.Password = "Pass123"
objMail.Host     = "mail.mydomain.com"
objMail.From     = "User 123"
objMail.AddAddress "expert@exchange.com"
objMail.Subject  = "Successful Mail"
objMail.Body     = "This was it!"
objMail.Send

set objMail = nothing


Posted By: BrownGhost
Date Posted: 15 July 2003 at 1:04pm

ohhh cool.. why dit no one tel me this erliger.. i dittent have to spend days to find a sulution.. LOL

NP i have 2 options now which is nice .)



Posted By: cookh
Date Posted: 09 August 2003 at 5:38am


Is there any solution for Jmail user? What should I do with functions_send_mail.asp?

For details, please refer to Another Problem "8000ffff"

Thanks Guys!



Posted By: BrownGhost
Date Posted: 09 August 2003 at 11:38am

if its the password and username problem there is no sulution..

ask your host if your smtp from web requers acentication. if it dos you are FxxxT :(

then ask your host if thy have a smtp you can send out mails whit whitout acentication.

        --= = Brown Ghost = =--
--= = International Man of Mystery = =--..



Posted By: b_bonnett
Date Posted: 09 August 2003 at 5:55pm

Actually, if it needs authentication, just add the authentication into the functions/functions_send_mail.asp file... quite easy to do really...

Blair



-------------
Webmaster, http://www.planegallery.net/ - The Plane Gallery
Greetings From Christchurch


Posted By: cookh
Date Posted: 09 August 2003 at 8:05pm
Originally posted by b_bonnett b_bonnett wrote:

Actually, if it needs authentication, just add the authentication into the functions/functions_send_mail.asp file... quite easy to do really...

Blair

I guess I should add anthentication information in the functions_send_mail.asp file. Is it:

Quote
.username= username
.password= password

? I'll come back if I succeed.



Posted By: guptaamit23
Date Posted: 10 August 2003 at 2:08am
Y don't u use CDONTS?? Its easy & troublefree 2 use & yet has all the required functionalities that u want in ur e-mail com. Also it doesn't require ne username or password or ne other config.


Posted By: cookh
Date Posted: 10 August 2003 at 2:44am

Originally posted by guptaamit23 guptaamit23 wrote:

Y don't u use CDONTS?? Its easy & troublefree 2 use & yet has all the required functionalities that u want in ur e-mail com. Also it doesn't require ne username or password or ne other config.

I would use CDONTS if I could. My host only installed one email component on the server.

Jmail is not difficult to configure but my host set it that I can only send to local email addresses with in the same domin name!



Posted By: stef_nz
Date Posted: 10 August 2003 at 2:57am
Originally posted by guptaamit23 guptaamit23 wrote:

Y don't u use CDONTS?? Its easy & troublefree 2 use & yet has all the required functionalities that u want in ur e-mail com. Also it doesn't require ne username or password or ne other config.


its not the mail component you have to worry about - even cdonts won't send mail through a smtp server that is set up to prevent relaying cos its the smtp server which requires the authentication not the component.

you should try using the actual ip address of your WWW server for the address of your smtp server.........the www server will pass your message on to the smtp server and it should authenticate it for you with any luck.  failing that, your host must provide a smtp server that allows outside communication, just ask them for the address.
I'd try the first option first tho...



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net