nsISmtpService->SendMessage now takes the host.

This commit is contained in:
mscott%netscape.com 1999-02-26 19:18:31 +00:00
Родитель f873d1f317
Коммит c9be510540
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -373,7 +373,7 @@ nsresult nsSmtpTestDriver::OnSendMessageInFile()
nsFilePath filePath (fileName);
nsIURL * url = nsnull;
m_smtpService->SendMailMessage(filePath, userName, recipients, &url);
m_smtpService->SendMailMessage(filePath, m_host, userName, recipients, &url);
if (url)
url->QueryInterface(nsISmtpUrl::IID(), (void **) &m_smtpUrl);
NS_IF_RELEASE(url);