Originally posted by: Michael Krebs
Hi,
please do not contact me regarding the handling of attachments. I have no idea, and I never extended these classes to handle attachments.
Sorry, but this is something you have to find out yourself.
Thanks,
Michael
Originally posted by: HUANGYIFU
HELO HUANGYIFU
250 OK
MAIL FROM:PSHYF
250 OK - mail from <PSHYF>
RSET
250 OK - Reset
MAIL FROM:PSHYF@P8S.COM
250 OK - mail from <PSHYF@P8S.COM>
RCPT TO:HUANGYIFU@CHINA.COM
550 Relaying is prohibited
DATA
503 No recipients: need RCPT
220 ps2.p8s.com ESMTP Server (Microsoft Exchange Internet Mail Service 5.5.2650.21) ready
....
(ANYONE CAN TELL ME,HOW CAN I DO ?)
Originally posted by: ty
why i can't send mail !
it say : SMTP server not ready for data!
and i did not know how to attach a file !
Reply
Originally posted by: Hoang Viet Thach
please send me more! i need information about it
ReplyOriginally posted by: Paul Meier
Hi,
this class seems not to work with an Exchange Server. I can send email to internal recipients only.
I get a 553 Error. How can I fix this?
Thank you very much
Reply
Originally posted by: MiniCooler
Hi,
For my program, i was searching a way to send Email from everywhere the program would be running. I tried some SMTP classes that i found here, but i had problems with the SMTP server (the smtp.mail.yahoo.com server told me that i need to be pop authenticated before sending an email through its smtp server). And i tried to establish a pop connection to the pop.mail.yahoo.com server (with my login and password), disconnect it and retry to send the mail through smtp.mail.yahoo.com. IT SEND THE MAIL !!!
Th only thing to do if your smtp server told you that you need to be authenticated is to open / close a connection to the corresponding pop server.
Thanks to Michael Krebs for its POP class
and to Wes Clyburn for its SMTP class.
Originally posted by: Jack
If I can not remember my smtp server name and just know my Email address, how do I get the smtp server from My Email address? who know the source code?
ReplyOriginally posted by: lily
Now I am working a program that email module
is concerned. Now I have one problem while
receiving emails with POP3. The mail subject
can't be recognized with a piles of characters
like this "Subject: =?gb2312?B?zsq68g==?="
Who can help me out? How to convert this CharacterSet
to one recognizable characters? If I send one mail
with the above unrecognizable Subject, when I got
it in Outlook. it appears to be right. What work
does the OE do?
Please accept my thanks to you who give me a hand.
one Chinese programmer:
lily
Originally posted by: Atul Thatte
I need to retrieve binary attachments using POP3.
How can this be achieved?
Originally posted by: Heinrich Ferreira
While using the CSMTP,CPOP3 and CMailMessage classes, I discovered that when sending mail to Microsoft Outlook at, say 8h00 in the morning from where I live in South Africa, the sent time is displayed as 10h00 in the received message. (The time zone is +2 where I live). I then discovered that it works correctly when I make the following change in the
BOOL CMailMessage::EncodeHeader() function:
sDate = m_tDateTime.Format( "%a, %d %b %y %H:%M:%S %Z" );
changed to
sDate = m_tDateTime.FormatGmt( "%a, %d %b %y %H:%M:%S %Z" );
This is because the Format member function compensates for the timezone and the FormatGmt does not, which in this case is what we want.
Am I correct?